Search code examples
pythonwindowspytorch

How can I install Pytorch version 1.1 on Windows x64?


I need to install an older version of Pytorch, version 1.1, on my Windows 10 x64 machine.

The instructions here tell me to download the wheel and install it. However, pip refuses to install this wheel, claiming it is not supported on my platform. I suppose that is because, judging by the the name of the wheel (torch-1.1.0-cp37-cp37m-win_amd64.whl) it is meant for AMD, and I'm on an Intel i7. I found no better matching wheel on the Pytorch site.

What is the easiest way to install Pytorch 1.1 on my machine?


Solution

  • You can use conda

    conda install pytorch=1.1.0
    

    I've checked the exisiting versions with conda search -f pytorch and 1.1.0 (and many others too) is available.