TensorFlow 安裝

歡迎Follow我的GitHub:https://github.com/SpikeKing.
本文地址:http://blog.csdn.net/caroline_wendy/article/details/77089599

TensorFlow是常用的機器學習庫之一。

TensorFlow

使用阿里雲的源安裝TensorFlow時

pip install --upgrade tensorflow -i http://mirrors.aliyun.com/pypi/simple

提示錯誤:

Downloading/unpacking tensorflow
  http://mirrors.aliyun.com/pypi/simple/tensorflow/ uses an insecure transport scheme (http). Consider using https if mirrors.aliyun.com has it available
  Could not find any downloads that satisfy the requirement tensorflow
Cleaning up...
No distributions at all found for tensorflow
Storing debug log for failure in /home/classify/.pip/pip.log

原因,pip版本較低,更新pip版本,即可。

pip install --upgrade pip

再次安裝 tensorflow,提示

Collecting tensorflow
  The repository located at mirrors.aliyun.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS it is recommended to use HTTPS instead, otherwise you may silence this warning and allow it anyways with '--trusted-host mirrors.aliyun.com'.
  Could not find a version that satisfies the requirement tensorflow (from versions: )
No matching distribution found for tensorflow

信任源,再次安裝,即可

pip install --upgrade tensorflow -i http://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章