Answers for "command to install pytorch in anaconda winows without cude"

4

pytorch anaconda install windows

conda install pytorch torchvision cudatoolkit=10.1 -c pytorch
Posted by: Guest on March-06-2020
10

install pytorch for cuda 10.0

# CUDA 10.2
pip install torch==1.6.0 torchvision==0.7.0

# CUDA 10.1
pip install torch==1.6.0+cu101 torchvision==0.7.0+cu101 -f https://download.pytorch.org/whl/torch_stable.html

# CUDA 9.2
pip install torch==1.6.0+cu92 torchvision==0.7.0+cu92 -f https://download.pytorch.org/whl/torch_stable.html

# CPU only
pip install torch==1.6.0+cpu torchvision==0.7.0+cpu -f https://download.pytorch.org/whl/torch_stable.html
Posted by: Guest on November-11-2020

Code answers related to "command to install pytorch in anaconda winows without cude"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language