被环境配置折磨的死去活来的,每次重新配都要查别人的,索性自己把最有效的记录下来。我配置jupyter主要有两个需求:
nb_conda:使用anaconda的环境nb_extenstions:实现其他拓展anaconda repo
Jupyter Notebook切换conda虚拟环境
通过下面命令安装插件:
conda install nb_conda重启
参考链接
1 安装 jupyter_contrib_nbextensions
pip install jupyter_contrib_nbextensions2 激活 nbextensions
jupyter contrib nbextension install --user3 安装并启用 Jupyter Nbextensions Configurator
pip install jupyter_nbextensions_configurator jupyter nbextensions_configurator enable --user之后便可在 url/nbextensions 的位置打开 configurator 进行设置了,例如启动 Jupyter Notebook 之后的网址为 http://localhost:8888/tree,那么 Jupyter Nbextensions Configurator 的设置地址则为 http://localhost:8888/nbextensions.
无法连接本地环境(即不能运行代码)