pycharm安装配置pytorch错误问题解决方案
问题描述
直接应用pycharm的setting编译器添加库的方式下载pytorch会提示:
Try to run this command from the system terminal. Make sure that you use the correct version of ‘pip’ installed for your Python interpreter located at 'D:\python\python.exe’
- 虽然提示版本问题,但是更新后仍然出现错误,第一次失败应该是显示确实wheel,但安装wheel后,依然失败。镜像直接安装依旧如此
解决办法
直接应用pip 利用命令行从官网下载
- 打开cmd
- 命令为
D:\python\Scripts\pip.exe install torch==1.7.1+cpu torchvision==0.8.2+cpu torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html
- 以上为CPU版本,根据具体版本自行更改。pip位置直接选择pycharm所应用的python文件中的pip,自行修改自己pip的位置