您的位置:首页 > 编程语言 > Python开发

在windows 上安装tensorflow

2016-12-29 19:06 465 查看
Pip installation on Windows

TensorFlow supports only 64-bit Python 3.5 on Windows. We have tested the pip packages with the following distributions of Python:

Python 3.5 from Anaconda

Python 3.5 from python.org

在使用第一种方式安装玩anaconda后安装TensorFlow时的时候容易发生问题(按照英文官方网站):

C:\> pip install --upgrade https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0-cp35-cp35m-win_amd64.whl[/code] 
问题:

Cannot remove entries from nonexistent file e:\anaconda3\lib\site-packages\easy-install.pth


解决方式:

pip install --ignore-installed --upgrade pip setuptools https://storage.googleapis.com/tensorflow/windows/cpu/tensorflow-0.12.0-cp35-cp35m-win_amd64.whl[/code] 
                                            
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  python tensoflow