Anaconda 可以帮助我们快捷的管理虚拟环境
在windows环境安装anaconda, 命令行操作都在Anaconda Prompt中执行
创建虚拟环境后,若安装新包出现网络错误,可以使用命令恢复默认源
conda config --remove-key channels
这里从网络中搜集了一些源(参考地址)
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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/conda-forge conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/msys2/ # 设置搜索时显示通道地址 conda config --set show_channel_urls yes
安装Jupyter内核包ipykernel
conda install -n *(虚拟环境名) ipykernel
安装nb_conda
conda install nb_conda
写入内核
python -m ipykernel install --user --name *(虚拟环境名) --display-name *(虚拟内核名) #命令中*()与其内内容均为注释,执行命令时替换
这一步之后,即可在Jupyter notebook中切换内核
若因一些原因没能成功,不妨查看这篇文章