Closed Inferencer closed 1 year ago
That is caused by your environment. You can try to install the PyTorch of version '1.9.0+cu111'.
That is caused by your environment. You can try to install the PyTorch of version '1.9.0+cu111'.
Installing that version seems to remove my torch vision as I used
pip install torch==1.9.0+cu111 -f https://download.pytorch.org/whl/torch_stable.html
Stupidly I did a pip install torchvision
soon after due to no module name torchvision error which changed the version back to my original issue, what is the correct command here?
pip install torch==1.9.0+cu111 torchvision==?.?.?+cu111 -f https://download.pytorch.org/whl/torch_stable.html
That is caused by your environment. You can try to install the PyTorch of version '1.9.0+cu111'.
Installing that version seems to remove my torch vision as I used
pip install torch==1.9.0+cu111 -f https://download.pytorch.org/whl/torch_stable.html
Stupidly I did a
pip install torchvision
soon after due to no module name torchvision error which changed the version back to my original issue, what is the correct command here?pip install torch==1.9.0+cu111 torchvision==?.?.?+cu111 -f https://download.pytorch.org/whl/torch_stable.html
It should be "'0.10.0+cu111'". You're better off downloading the wheel file.
Getting this not sure what I'm doing wrong