jupyter's 使用指南

jupyter notebook’s guide

0. 更改工作空间 && 切换运行内核

0.1 jupyter 初始工作空间的修改

  1. 创建目标文件夹,例如 jupyter-notebook

  2. 生成配置文件

    1
    jupyter notebook --generate-config

    image-20200229203107904

  3. 编辑生成的配置文件

    找到这个配置项 #c.NotebookApp.notebook_dir = ''

    image-20200229203322871

    更改为即可。

    image-20200229203747368

0.2 切换内核

1
2
3
4
5
6
# 每个环境都需要安装 ipykernel
conda install ipykernel
# 激活对应的 conda 环境,例如 tensorflow_env
conda activate tensorflow_env
# 将环境写入 Notebook 的 kernel 中
python -m ipykernel install --user --name tensorflow_env --display-name "Python (tensorflow)"

在 Jupyter Notebook 里切换即可。

以下内容可略。


1. 安装 jupyter

1.1 Anaconda 自带

1.2 使用 pip 安装

1
pip install jupyther

1.3 使用 conda 安装

1
conda install jupyter

2. 卸载 jupyter

使用 pip uninstall jupyter 是卸不掉 jupyter 的,需要用到 pip-autoremove,它会卸载掉package和无用的依赖。

1
2
pip install pip-autoremove
pip-autoremove jupyter -y

或者使用 conda 卸载。

1
conda uninstall jupyter notebook

3. 使用 jupyter

打开 jupyter

  • 一般可以通过在Anaconda Powershell Prompt 中输入命令 jupyter notebook

  • 创建 jupyter notebook 快捷方式

    找到 Scripts目录下 jupyter-notebook.exe并创建快捷方式。

    image-20200229201737769