目录
Linux 初始化 jupyter
一、 安装
安装 Jupyter
可以使用 Conda
或者 pip
conda install jupyter # 安装 jupyter
conda install ipython # 安装 ipython
pip install jupyter # 安装 jupyter
pip install ipython # 安装 ipython
jupyter-notebook --generate-config # 在家目录下生成配置文件
输入 jupyter --version
出现消息,代表安装成功
二、 配置文件
1、 生成密码
echo "
from notebook.auth import passwd
pwd = passwd() # 生成密码,同时,我们要复制返回的值,假设为:'xxxxxxxx'
print(pwd) # 把这个值复制下来
" > getPwd.py
python getPwd.py # 运行文件
rm -rf getPwd.py
2、 更改配置文件
echo "
c.NotebookApp.allow_root = True
c.NotebookApp.ip = '*'
c.NotebookApp.notebook_dir = '/root/jupyter'
c.NotebookApp.open_browser = False
c.NotebookApp.password = 'xxxxxxxx'
" >> ~/.jupyter/jupyter_notebook_config.py # jupyter配置文件的路径
三、 系统配置
1、 开启端口
开启jupyter
的运行端口:8888
# 添加
firewall-cmd --zone=public --add-port=8888/tcp --permanent
# 重新载入配置
firewall-cmd --reload
2、 设置开机自启动
由于,开机自启动时,系统的配置文件,在开机自启动程序的后期,故,我们不能直接把开机自启动程序添加到,rc.d
中,这样jupyter
会报错
我们可以把一个脚本文件添加到系统配置文件中
mkdir /usr/local/scripts
echo "
#!/usr/bin/bash
nohup jupyter-notebook >> /var/log/jupyter.log 2>&1 &
" > /usr/local/scripts/start_scripts.sh
chmod a+x /usr/local/scripts/start_scripts.sh
echo "bash /usr/local/scripts/start_scripts.sh" >> /etc/profile
这些设置完,都不报错,就大功告成了,我们可以尽情的在主机使用jupyter
服务了
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/271642.html