给jupyter notebook换源
时间: 2023-10-29 18:08:16 浏览: 156
解决 jupyter notebook 回车换两行问题
更换jupyter notebook的源可以让我们在使用pip安装Python包时更快地下载和安装。下面是更换jupyter notebook源的步骤:
1. 打开终端或命令行窗口,输入以下命令更换pip源为清华大学源:
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
2. 打开jupyter notebook,在新建notebook的时候可以看到已经使用了清华大学源。
如果需要恢复默认源,可以使用以下命令:
pip config unset global.index-url
阅读全文