pytorch下载缓慢解决方法并配置 Jupyter Notebook

时间:2024-05-23 18:23:20

 

pytorch下载缓慢解决方法

pytorch下载缓慢解决方法并配置 Jupyter Notebook

在pytorch官网的下载方式太慢,根本无法安装。

可以使用anaconda 的清华镜像:https://mirrors.tuna.tsinghua.edu.cn/help/anaconda/

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

再使用:

conda install pytorch torchvision cudatoolkit=10.0

进行安装。

配置 Jupyter Notebook

引用于 https://github.com/zergtant/pytorch-handbook

新建的环境是没有安装安装ipykernel的所以无法注册到Jupyter Notebook中,所以先要准备下环境:

#安装ipykernel
conda install ipykernel
#写入环境
python -m ipykernel install  --name pytorch --display-name "Pytorch for Deeplearning"

 下一步就是定制 Jupyter Notebook

#切换回基础环境
activate base
#创建jupyter notebook配置文件
jupyter notebook --generate-config
## 这里会显示创建jupyter_notebook_config.py的具体位置

打开文件,修改

c.NotebookApp.notebook_dir = '' 默认目录位置
c.NotebookApp.iopub_data_rate_limit = 100000000 这个改大一些否则有可能报错

进行测试:

pytorch下载缓慢解决方法并配置 Jupyter Notebook

pytorch下载缓慢解决方法并配置 Jupyter Notebook

安装完成。