Horje
install pytorch for cuda 10.0 Code Example
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
Source: pytorch.org
cuda 10 install pytorch
# CUDA 9.2
conda install pytorch==1.2.0 torchvision==0.4.0 cudatoolkit=9.2 -c pytorch

# CUDA 10.0
conda install pytorch==1.2.0 torchvision==0.4.0 cudatoolkit=10.0 -c pytorch

# CPU Only
conda install pytorch==1.2.0 torchvision==0.4.0 cpuonly -c pytorch
Source: pytorch.org




Shell

Related
grant linux sh script permissions Code Example grant linux sh script permissions Code Example
count occurrences of word in file linux ignoring case Code Example count occurrences of word in file linux ignoring case Code Example
find number of occurances of a string in a file shell Code Example find number of occurances of a string in a file shell Code Example
docker-compose  permission denied Code Example docker-compose permission denied Code Example
ubuntu install bluez Code Example ubuntu install bluez Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11