Can't install pytorch with pip on Windows

relot picture relot · Aug 14, 2019 · Viewed 21.4k times · Source

I'm trying to install Pytorch with Windows and I'm using the commands of the official site https://pytorch.org/get-started/locally/

pip3 install torch==1.2.0 torchvision==0.4.0 -f https://download.pytorch.org/whl/torch_stable.html

This is the command if I choose Windows, Cuda 10.0, and Python 3.7 But if I run this I get the error message:

ERROR: Could not find a version that satisfies the requirement torch==1.2.0 (from versions: 0.1.2, 0.1.2.post1, 0.1.2.post2)
ERROR: No matching distribution found for torch==1.2.0

So why does this happen? My pip is version 19.2 and I am in a newly installed python 3.7 environment

Answer

Raj Desai picture Raj Desai · Jul 18, 2020

I tried multiple solutions and it wasn't working on Windows 10 until I tried this:

pip install torch==1.5.0+cpu -f https://download.pytorch.org/whl/torch_stable.html

If you want your GPU enabled then remove the "+CPU":

pip install torch==1.5.0 -f https://download.pytorch.org/whl/torch_stable.html