Pytorch环境搭建出现的问题汇总

由于安装tensorflow导致cuda环境报废,没有办法只能全部从头再来,正好理一下系统内的环境,原来base环境装了太多没用的包,这次打算都用虚拟环境了。记录一下安装中出现的问题和解决方法,基本都是转载其他的贴子。

【RuntimeError: CUDA error: device-side assert triggered】问题与解决

【RuntimeError: CUDA error: device-side assert triggered】问题与解决_ball today的博客-CSDN博客

类别设置

torch和torchvision对应版本

【问题】torch和torchvision对应版本_Jackilina_Stone的博客-CSDN博客_torch和torchvision对应版本

如何查看cuda的版本

https://jingyan.baidu.com/article/17bd8e5221848dc4aa2bb872.html

镜像  pip install -i https://pypi.tuna.tsinghua.edu.cn/simple XXX

清华: https://pypi.tuna.tsinghua.edu.cn/simple

豆瓣: http://pypi.douban.com/simple/

阿里: http://mirrors.aliyun.com/pypi/simple/

Requirment.txt 安装

pip install -r requirements.txt

requirements.txt 安装_beixidong的博客-CSDN博客_requirements安装

解决import torchvision报错,UserWarning: Failed to load image Python extension: Could not find module

解决import torchvision报错,UserWarning: Failed to load image Python extension: Could not find module_is_colorful的博客-CSDN博客_import torchvision报错

UserWarning: Failed to load image Python extension:

  warn(f"Failed to load image Python extension: {e}")

首先排查torch和torchvision的版本冲突问题,然后降低pillow版本。

pip 安装模块时报“pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPool(host='files.pythonh”

pip install grpcio-tools -i https://pypi.doubanio.com/simple

关于torchvision导入报错的问题,UserWarning: Failed to load image Python extension:

在pycharm里面移除torchvision,然后利用pip安装

虚拟环境安装pytorch

python配置虚拟环境,并在虚拟环境中安装pytorch教程_非妃是公主的博客-CSDN博客_虚拟环境安装pytorch

https://www.jb51.net/article/223049.htm

你可能感兴趣的:(pytorch,tensorflow,深度学习)