You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I need to install a certain version of Pytorch that I can use with a certain version of Cuda. Normally when using pip I'd install it in the following way:
Installing torch==1.7.1+cu110...
Error: An error occurred while installing torch==1.7.1+cu110!
Error text:
ERROR: Could not find a version that satisfies the requirement torch==1.7.1+cu110
ERROR: No matching distribution found for torch==1.7.1+cu110
What is the proper way to handle this using pipenv? Simply to install it using pip anyway, or something else?
I need to install a certain version of Pytorch that I can use with a certain version of Cuda. Normally when using pip I'd install it in the following way:
pip install torch==1.7.1+cu110 torchvision==0.8.2+cu110 torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html
But when I run that using pipenv, so in the following way:
pipenv install torch==1.7.1+cu110 torchvision==0.8.2+cu110 torchaudio===0.7.2 -f https://download.pytorch.org/whl/torch_stable.html
I get the following error:
What is the proper way to handle this using pipenv? Simply to install it using pip anyway, or something else?
These installations instructions come from the Pytorch getting started guide.
The text was updated successfully, but these errors were encountered: