Issue
I'm making an app using gpt-neo
and I'm trying to install torch
, but it won't install.
The error message is as follows:
C:\Users\Ben>pip install torch
ERROR: Could not find a version that satisfies the requirement torch (from versions: none)
ERROR: No matching distribution found for torch
Is there any way to install torch
without pip?
Solution
Its possible now if you use the nightly version.
Instructions here https://pytorch.org/, but pasted here for completeness
pip3 install --pre torch torchvision torchaudio --index-url https://download.pytorch.org/whl/nightly/cu118
Answered By - Rick Deckard
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.