安装tensorflow-gpu速度慢

安装tensorflow-gpu速度慢

一般不建议采用pip install tensorflow-gpu1.14.0 --upgrade tensorflow-gpu方式,这种方式需要而且下载速度超级慢。可以使用国内镜像,pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ --upgrade tensorflow-gpu1.14.0

pip --default-timeout=1000000 install -U -i https://pypi.tuna.tsinghua.edu.cn/simple/ --upgrade tensorflow-gpu 这样还可以防止超时

pip --default-timeout=1000000 install -U -i https://pypi.tuna.tsinghua.edu.cn/simple/ --upgrade tensorflow-gpu==1.14.0 这样还可以防止超时,还是指定版本

卸载 pip uninstall tensorflow-gpu
镜像网址

清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
运行Python脚本

Python xx.py
python -m xx 【xx代表文件名】

安装pytorch

Q:出现no module named ‘pip._internal’
搜索stackoverflow
Q:pytorch具体安装步骤:
1.上pytorch官网查看用pip那个命令安装【pip3 install torch torchvision
】,安装时最好切换为国内镜像源永久置换pip镜像源

ModuleNotFoundError: No module named ‘ray’
pip install -i http://pypi.douban.com/simple/ ray --trusted-host pypi.douban.com
最近清华的源似乎有问题,建议用豆瓣的

你可能感兴趣的:(安装tensorflow-gpu速度慢)