Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find a version that satisfies the requirement torch==1.3.1

First of all i tried command from their main page, that they gave me:

pip3 install torch==1.3.1+cpu torchvision==0.4.2+cpu -f https://download.pytorch.org/whl/torch_stable.html

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

After this i decided to take available from this list: https://download.pytorch.org/whl/cpu/stable

So at the end i tried something like this

pip3 install torch-1.1.0-cp37-cp37m-win_amd64.whl -f https://download.pytorch.org/whl/torch_stable.html

And now they write that this is not supported wheel on my platform. Wtf? ( I use windows 7, python64, have amd) ( location of python: C:\Python38, location of pip C:\Python38\Scripts )

like image 970
Andrew Avatar asked Nov 17 '19 14:11

Andrew


1 Answers

There is no any wheels for Python 3.8 at https://download.pytorch.org/whl/torch_stable.html.

not supported wheel on my platform

This is because the wheel is for Python 3.7.

Advice: downgrade to Python 3.7.

like image 62
phd Avatar answered Sep 21 '22 11:09

phd