2020-04-16-jupyter notebook切换运行环境

1. 安装jupyter

2. 为项目设置一个专门的env

virtualenv air_route_classification_env

切换至该环境  air_route_c_env\Scripts\activate.bat

3.jupyter kernelspec list查看目前可用的环境

4.安装

pip install ipykernel

5.注册

python -m ipykernel install --user --name air_route_c_env --display-name "py3[air_route_c_env]"

效果:

两个环境都有了。

示意图

jupyter notebook启动时切换环境。

你可能感兴趣的:(2020-04-16-jupyter notebook切换运行环境)