Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Could not find a version that satisfies the requirement torch>=1.0.0?

Tags:

python

torch

Could not find a version that satisfies the requirement torch>=1.0.0 No matching distribution found for torch>=1.0.0 (from stanfordnlp)

like image 600
Abdellah Cheik Avatar asked May 21 '19 13:05

Abdellah Cheik


People also ask

How do I install Python torch?

To install PyTorch, you have to run the installation command of PyTorch on your command prompt. This command is available on https://pytorch.org/. Select language and cuda version as per your requirement. Now, run python -version, and Conda -version command to check Conda and python packages are installed or not.

What version of Python does PyTorch support?

Python. Currently, PyTorch on Windows only supports Python 3.7-3.9; Python 2.

Could not find a version that satisfies the requirement OS?

How To Solve Could not find a version that satisfies the requirement Error ? To Solve Could not find a version that satisfies the requirement Error You just need to update pip and your error will be resolve.

How do I know what version of PyTorch I have?

Using Python Code 0+cu102 means the PyTorch version is 1.9. 0, and the CUDA version is 10.2. Alternatively, use your favorite Python IDE or code editor and run the same code.


1 Answers

This can also happen if your Python version is too new. Pytorch currently does not support past 3.7.9.

Figured out from: https://stackoverflow.com/a/58902298/5090928

like image 127
serg06 Avatar answered Oct 02 '22 00:10

serg06