安装Jupyter notebook,修改Jupyter notebook打开路径,虚拟环境,以及Jupyter notebook基本操作

一、经过以下步骤你可以实现在虚拟环境中安装jupyter notebook,以及启动jupyter notebook。

创建虚拟环境

conda create -n demo python=3.9

激活虚拟环境

conda activate demo

虚拟环境中安装jupyter notebook

conda install jupyter notebook

启动jupyter notebook

jupyter notebook

二、在本地安装了jupyter notebook,修改启动时的文件路径,以及设置jupyter notebook运行自己创建的python虚拟环境

1.修改路径:Anaconda Prompt窗口输入一下命令,表示创建jupyter notebook 的配置文件,以及显示配置文件的位置,用文本打开

jupyter notebook --generate-config

找到 c.NotebookApp.notebook_dir属性,删除注释#号,然后添加自己设置的指定文件夹,保存退出:
安装Jupyter notebook,修改Jupyter notebook打开路径,虚拟环境,以及Jupyter notebook基本操作_第1张图片
例如:
在这里插入图片描述
然后重启jupyter notebook,可以发现已经改成了所设置的路径。

2.修改jupyter notebook所运行的虚拟环境

一般不是在虚拟环境中启动jupyter notebook的话,是只有一个python3的,可以通过点击kernel -> change kernel查看可用环境,图片里多了个dataset是我添加后才多的,一般只有第一个。
安装Jupyter notebook,修改Jupyter notebook打开路径,虚拟环境,以及Jupyter notebook基本操作_第2张图片
添加和修改自己创建的虚拟环境步骤
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,修改Jupyter notebook打开路径,虚拟环境,以及Jupyter notebook基本操作_第3张图片

三、jupyter notebook基本操作

jupyter notebook分为两种模式,蓝色表示命令模式,绿色表示输入模型(类似与vim文本编辑)
在这里插入图片描述
在这里插入图片描述

1. esc键切换模型

2. 查看快捷键,命令模式下按H(help)键

3. 运行代码:编辑模式下同时按下:shift和回车

4. A:在当前输入的上一行添加输入,B在当前输入的下一行添加输入

你可能感兴趣的:(Python,jupyter,python)