在 window 上安装GPU版本的torch

pip install https://download.pytorch.org/whl/cu80/torch-1.0.0-cp37-cp37m-win_amd64.whl -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

如果你安装完毕后出现了如下错误:

 Could not install packages due to an Environme

则你只需要在Terminal中
再执行一遍以下代码就行了:

pip install https://download.pytorch.org/whl/cu80/torch-1.0.0-cp37-cp37m-win_amd64.whl -i https://pypi.tuna.tsinghua.edu.cn/simple some-package

至于torchvision, 虽然我早就安装过了,但仍需重新安装安装。因为,在此处也只是用新下载的GPU1.0.0版本的torch把原来的CPU1.6.0版本的torch替换了而已,那么torchvision也要使用对应的版本。所以在Terminal里执行如下命令:

pip install --no-deps torchvision==0.2.0 -i https://pypi.tuna.tsinghua.edu.cn/simple

然后验证一下:

import torch

print(torch.cuda.is_available())
print(torch.__version__)

输出:

True
1.0.0

由此大功告成!

你可能感兴趣的:(Python就是比Java好)