2017-06-16 67 views
0

看來TF是需要setuptools的27.2.0,而我有setuptools的(36.0.1) ???? (py362)我試圖安裝TF 1.2GPU,anaconda命令行客戶端(版本1.6.3),並且安裝了TF 1.2GPU, Python 3.6.1 FWIW我沒有安裝建議的protobuf二進制文件,因爲在TF安裝之前我有一臺相當龐大的機器(pip3 install --upgrade \ https://storage.googleapis.com/tensorflow/linux/cpu/protobuf-3.1.0-cp35-none-linux_x86_64.whl)這可能會讓我感到困惑嗎?該錯誤消息點雖然但我看不到setuptools問題的解決方案?錯誤Anaconda的包膜與PY 3.6的Ubuntu 16.04安裝工具安裝TensorFlow 1.2 GPU

我確實看到之前的版本有類似的問題,但沒有看到解決方案?我使用以下內容:

pip install --upgrade \ https://storage.googleapis.com/tensorflow/linux/gpu/tensorflow_gpu-1.2.0-cp36-cp36m-linux_x86_64.whl 

安裝得很好,但後來我得到了這個,我不能運行TF。

FileNotFoundError: [Errno 2] No such file or directory: '/home/tom/anaconda3/envs/py362/lib/python3.6/site-packages/setuptools-27.2.0-py3.6.egg' 
(py362) [email protected]:~$ pip install setuptools-27.2.0-py3.6 
Collecting setuptools-27.2.0-py3.6 
Could not find a version that satisfies the requirement setuptools-27.2.0-py3.6 (from versions:) 
No matching distribution found for setuptools-27.2.0-py3.6 
(py362) [email protected]:~$ pip install setuptools 
Requirement already satisfied: setuptools in ./anaconda3/envs/py362/lib/python3.6/site-packages 

做一個點列表我看到

setuptools (36.0.1) 

這樣看來也許是對TF1.2要求安裝可能無法正確固定?

回答

1

pip install setuptools==27.2.0

+0

看到3號線從底部,沒有運氣。(試過) – dartdog

+0

我看你已經嘗試了不同的命令:'PIP安裝setuptools-27.2.0-py3.6'。你可以試試我的嗎? – phd

+0

HMM看起來像這樣做!謝謝,奇怪,雖然 – dartdog