【如何查看自己所安装的python、torch、torchvision版本】

进入cmd

【如何查看自己所安装的python、torch、torchvision版本】_第1张图片

查看各个库的命令(https://img-blog.csdnimg.cn/61a8545098aa4304bf32c582dff3bd7e.png#pic_center)

【如何查看自己所安装的python、torch、torchvision版本】_第2张图片

进入cmd界面之后输入python,即可看到自己安装的python版本,同时也是进入了python环境

 在python环境中输入import torch,回车,输入torch.__version__,可看到自己安装的torch版本

我的torch版本是1.13.0,对应torchvision版本0.14.0

所以在pycharm的terminal对原本的torchvision版本进行卸载:

pip uninstall torchvision

再进行安装对应的torchvision版本

pip install torchvision==0.14.0

如果torch版本和torchvision版本不匹配,会出现以下报错问题:

UserWarning: Failed to load image Python extension: [WinError 127] 找不到指定的程序。

你可能感兴趣的:(python,开发语言,pytorch)