记录:虚拟环境中安装GPU版pytorch

具体如图:

记录:虚拟环境中安装GPU版pytorch_第1张图片

本菜鸡一般使用的是py3.7这个环境,现在的情况是一直以为我装的就是GPU版torch,没想到装到base环境中了,可能跟我的习惯:conda和pip两命令混用 有关叭~

那就在py3.7里面再装一次!

使用命令:pip install torch==1.11.0 torchvision==0.12.0+cu113 torchaudio==0.11.0+cu113 -f https://download.pytorch.org/whl/torch_stable.html

 期间碰到的问题:安装多次中途失败

报错信息: pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='download.pytorch.org', port=443): Read timed out.

记录:虚拟环境中安装GPU版pytorch_第2张图片

好的,加上镜像源:pip install torch==1.13.1 torchvision==0.12.0+cu113 torchaudio==0.11.0+cu113 -f https://download.pytorch.org/whl/torch_stable.html -i https://pypi.tuna.tsinghua.edu.cn/simple

速度快了很多,还可以!

安装成功,附图同喜:

记录:虚拟环境中安装GPU版pytorch_第3张图片

 

这里附上其他镜像源:

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

 

你可能感兴趣的:(机器学习环境搭建,pytorch,深度学习,python)