how to install with version annotation and wheel? (e.g. pytorch cpu version) #693
Answered
by
jjangga0214
jjangga0214
asked this question in
Q&A
-
Pytorch's official page guides user to install the cpu-only mode of package by the following. pip3 install torch==1.10.0+cpu \
torchvision==0.11.0+cpu \
torchaudio==0.10.0+cpu \
-f https://download.pytorch.org/whl/cpu/torch_stable.html If I run pdm add torch~=1.10.0+cpu -f https://download.pytorch.org/whl/cpu/torch_stable.html then an error occurs. Usage: pdm [OPTIONS] [COMMANDS] ...
pdm: error: unrecognized arguments: -f https://download.pytorch.org/whl/cpu/torch_stable.html If I run pdm add torch~=1.10.0+cpu then another error occurs. [RequirementError]: The local path torch=1.10.0+cpu does not exist.
Add '-v' to see the detailed traceback How can I do? Thanks. |
Beta Was this translation helpful? Give feedback.
Answered by
jjangga0214
Oct 23, 2021
Replies: 1 comment
-
Answered from #694 |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jjangga0214
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Answered from #694