anaconda 安装遇到的问题
windows环境变量需要设置
python命令老是弹出微软商店
删除以下环境变量(PATH)
%USERPROFILE%\AppData\Local\Microsoft\WindowsApps;
1.pip版本更新解决办法:使用国内的源下载:
python -m pip install --upgrade pip -i [https://pypi.douban.com/simple]
(https://pypi.douban.com/simple)
2.安装步骤
(1)傻瓜式安装Anaconda3.5
(2)打开Anaconda prompt,进去pip安装需要的包或者conda环境
(3)创建虚拟环境,并且指定环境名
conda create -n tensorflow python=3.5
(4)激活新环境
activate tensorflow
(5)安装tensorflow
pip install tensorflow==1.15.2 -i https://pypi.tuna.tsinghua.edu.cn/simple
或者(从清华镜像源下载)
pip install tensorflow-gpu==1.15.0 -i https://pypi.tuna.tsinghua.edu.cn/simple #可改成任意版本
3.查看TensorFlow安装版本和路径|验证安装成功与否:
由于Tensorflow版本不同,可能一些函数的调用也有变换,这时候可能需要查看Tensorflow版本,可以在终端输入查询命令如下:
python
import tensorflow as tf
tf.__version__
tf.__path__ #查询tensorflow安装路径
注意:直接pip往往太慢了,从豆瓣或者清华镜像下载
豆瓣镜像源https://pypi.douban.com/simple/
清华镜像源https://pypi.tuna.tsinghua.edu.cn/simple
示例代码安装keras(注意:–user代表安装在个人目录下,不影响root目录)
pip3 install keras -i https://pypi.douban.com/simple/ --user
遇到的问题:
1.mac的tensorflow版本和windows是不一样的——windows10
pip install tensorflow==1.15.2 -i https://pypi.tuna.tsinghua.edu.cn/simple
2.遇到找不到包问题:
例如:ERROR: Could not find a version that satisfies the requirement simplejson (from versions: none)
python -m pip install --upgrade pip
pip install PyHamcrest -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
3.需要卸载的包:ERROR: Cannot uninstall 'wrapt'
pip install wrapt --ignore-installed