Ubuntu 20.04 下Jupyter notebook配置

一、配置环境变量

为了不需要每次进入anaconda环境后才能运行 jupyter notebook,需要修改配置
进入anconda环境的方式

conda activate python_38-pytorch_1.8.1

在终端输入命令,打开bachrc文件

$ gedit ~/.bashrc

在bachrc文件最后一行添加语句:

export PATH="/home/sherry/software/anaconda/bin:$PATH"

这里“/home/sherry/software/anaconda/bin”路径需要修改为你的Anaconda的安装路径,默认在home下。
查看anaconda安装路径的方式:

$ conda info|grep "base environment"
       base environment : /home/sherry/software/anaconda  (writable)

点击保存,关闭bashrc文件,最后一定要在终端输入下面命令才能生效:

$ source ~/.bashrc

二、修改Jupyter notebook默认目录路径

1、创建Jupyter notebook的配置文件jupyter_notebook_config.py

在终端中输入:

$ jupyter notebook --generate-config

2 修改jupyter_notebook_config.py

在终端中输入,打开jupyter_notebook_config.py:

$ gedit ~/.jupyter/jupyter_notebook_config.py

搜索:default_url,找到如下文字:

## The default URL to redirect to from `/`
#c.NotebookApp.default_url = '/tree'

将其修改为:

## The default URL to redirect to from `/`
c.NotebookApp.default_url = '/tree/Jupyter_notebook'

其中/tree/Jupyter_notebook对应的文件夹是“/home/sherry/Jupyter_notebook”,这里要修改为你的文件夹路径

3、使用jupyter notebook

在终端输入下面命令:

$ jupyter notebook

三、参考与致谢

1、Anconda环境安装,参考 【深度学习】保姆级教程:个人深度学习工作站配置指南
2、配置与使用jupyter notebook,参考 Ubuntu 20.04安装Anaconda3+配置+使用jupyter notebook
3、修改Jupyter notebook默认目录路径,参考Python: linux Ubuntu 16.04 下Jupyter notebook改变默认目录路径

你可能感兴趣的:(Ubuntu 20.04 下Jupyter notebook配置)