创建虚拟环境
conda create -n demo python=3.9
激活虚拟环境
conda activate demo
虚拟环境中安装jupyter notebook
conda install jupyter notebook
启动jupyter notebook
jupyter notebook
jupyter notebook --generate-config
找到 c.NotebookApp.notebook_dir属性,删除注释#号,然后添加自己设置的指定文件夹,保存退出:
例如:
然后重启jupyter notebook,可以发现已经改成了所设置的路径。
一般不是在虚拟环境中启动jupyter notebook的话,是只有一个python3的,可以通过点击kernel -> change kernel查看可用环境,图片里多了个dataset是我添加后才多的,一般只有第一个。
添加和修改自己创建的虚拟环境步骤
1.创建和激活虚拟环境,dataset为环境名,改成自己的
conda create -n dataset python=3.9
conda activate dataset
2.安装ipykernel ipython
pip install ipykernel ipython
3.添加虚拟环境到kernel,dataset为环境名,改成自己的
ipython kernel install --user --name dataset
见下图表示添加成功
4.启动jupyter notebook,然后创建ipynb文件,然后点击kernel -> change kernel->虚拟环境名,
jupyter notebook分为两种模式,蓝色表示命令模式,绿色表示输入模型(类似与vim文本编辑)