win10+Python3.6+cuda10.0安装pytorch
我安装的torch==1.2.0 torchvision==0.4.0,pytorchv1.1.0。
安装过程遇到的问题汇总:
1、During handling of the above exception, another exception occurred:
解决方案:不停切换网站产生的冲突
然后,我切换了清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/镜像源,结果不好使,这网站好像是不好使了,
usage: conda-script.py [-h] [-V] command ...
conda-script.py: error: unrecognized arguments: -i https://pypi.tuna.tsinghua.edu.cn/simple
再然后,pip install torch==1.2.0 torchvision==0.4.0 -f https://download.pytorch.org/whl/torch_stable.html,倒是安装了,在终端检验import torch没有报错,且list中也有torch。
但是,运行程序还是不好使,
原来是在pytorch环境下安装的原因,所以,在pycharm中需要相应添加。过程如下。
打开pycharm,file>>settings>>(左侧)project:python Interpreter>>(右侧)点击倒三角
show all>>点击加号'+'>>system Interpreter>>
添加python.exe路径即可。*************注意************这里添加的是pytorch中的python.exe,路径是...\Anaconda3\envs\pytorch\python.exe
终于解决了,开心。。。