From d54e39e920841f750120112115851a2996b5bb00 Mon Sep 17 00:00:00 2001 From: zergtant Date: Sat, 13 Apr 2019 11:06:46 +0800 Subject: [PATCH] fixed #22 --- chapter1/1.2-pytorch-installation.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/chapter1/1.2-pytorch-installation.md b/chapter1/1.2-pytorch-installation.md index 65bdbfd7..7ae25357 100644 --- a/chapter1/1.2-pytorch-installation.md +++ b/chapter1/1.2-pytorch-installation.md @@ -35,7 +35,12 @@ conda install pytorch torchvision cudatoolkit=10.0 -c pytorch ``` -需要说明的一点是如果使用清华镜像,可以直接添加pytorch源镜像去掉,并且去掉`-c pytorch` 这样才能使用镜像源。 +需要说明的是如果使用清华的镜像,需要去掉`-c pytorch` 这样才能使用清华源。 + +使用以下命令添加pytorch的清华源 +```bash +conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ +``` 验证输入python 进入 ```python