I took a little time to install pytorch, so I will leave a note. The environment is as follows. OS:Windows10 Python3.6.6 Pytorch==1.1.0 Torchvision==0.3.0
I wonder if I should simply enter the following
pip install torch
pip install torchvision
I got a ModuleNotFoundError in tools.nnwrap and couldn't install it, and there was no point in specifying the version.
Here is the command that worked.
pip install https://download.pytorch.org/whl/cu90/torch-1.1.0-cp36-cp36m-win_amd64.whl
pip install https://download.pytorch.org/whl/cu90/torchvision-0.3.0-cp36-cp36m-win_amd64.whl
Recommended Posts