Bootstrap

如何选择jupyter使用的python虚拟环境

1 首先创建一个虚拟环境

可参考
https://blog.csdn.net/weixin_43702146/article/details/122058849

2 激活新建虚拟环境

activate [name]

3 保证Jupyter Notebook已安装

 conda list

如果可以找到“jupyter”,说明已经被安装。否则使用一下命令进行安装。

conda install jupyter

4 使用当前环境打开jupyter

jupyter notebook [工作目录 不选默认是你配置的目录]
;