Skip to content

Commit

Permalink
cuda requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
yysijie committed May 24, 2020
1 parent 1d53c5b commit 2aa1be3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions doc/GETTING_STARTED.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,13 @@ conda create -n open-mmlab python=3.7 -y
conda activate open-mmlab
```

b. Install PyTorch and torchvision:
b. Install PyTorch and torchvision (CUDA is required):
``` shell
conda install pytorch==1.2.0 torchvision==0.4.0 -c 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
```
The higher versions are not covered by tests.

Expand Down

0 comments on commit 2aa1be3

Please sign in to comment.