【Linux下安装配置Jupyter】

"> ```shell

""" 第一步 安装 """
pip3 install -i https://pypi.douban.com/simple jupyter

""" 第二步 生成配置文件 """
jupyter notebook --generate-config --allow-root

配置文件生成在:~/.jupyter/jupyter_notebook_config.py

""" 第三步 生成密码 """
jupyter notebook password

""" 第四部 修改配置文件 """

设置监听地址,一般改为当前主机的ip

sed -ie "s/#c.NotebookApp.ip = 'localhost'/c.NotebookApp.ip = '0.0.0.0'/g" ~/.jupyter/jupyter_notebook_config.py

设置监听端口

sed -ie 's/#c.NotebookApp.port = 8888/c.NotebookApp.port = 8000/g' ~/.jupyter/jupyter_notebook_config.py

禁用自动打开浏览器

sed -ie 's/#c.NotebookApp.open_browser = True/c.NotebookApp.open_browser = False/g' ~/.jupyter/jupyter_notebook_config.py

""" 第五步 启动朱皮特 """
jupyter notebook --allow-root &

""" 第六步 访问 """

在访问前,先看看你的防火墙规则

此时打开浏览器,输入 Jupyter服务器的ip:8000

进入登陆页面后,输入刚刚生成的密码即可

"

原文地址:https://www.cnblogs.com/zyk01/p/11376460.html