Linux服务器上配置Jupyter并在后台运行
使用工具:Xshell作为终端,Python3 版本,Xmanager打开Linux图形浏览器.
第一步:安装Jupyter
pip3 install -i https://pypi.douban.com/simple jupyter
如果己安装好Anaconda,Anaconda自带的有Jupyter,请自行忽略第一步.
第二步:生成配置文件
jupyter notebook --generate-config --allow-root
配置文件生成在 ~/.jupyter/jupyter_notebook_config.py
第三步:生成用于登录 的密码
jupyter notebook password
输入密码并再次确认密码一致
enter password
verify password
第四步:修改配置文件
设置监听地址,一般改为当前主机的ip,设置为0。0。0。0,则为所有地址可访问
sed -ie "s/#c.NotebookApp.ip = 'localhost'/c.NotebookApp.ip = '0.0.0.0'/g" ~/.jupyter/jupyter_notebook_config.py
设置监听端口,一般默认端口为8888
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
jupyter notebook --allow-root &
第六步:本地浏览器访问Jupyter
1、打开浏览器,输入 Jupyter服务器的ip:8000
2、进入登陆页面后,输入刚刚设置的密码即可
第七步:后台运行Jupyter
在云服务器中搭建好jupyter并运行后,关闭服务器终端,Jupyter停止运行,其占用当前终端,因此需要将Jupyter在后台运行,
命令1:
jupyter notebook --allow-root > jupyter.log 2>&1 &
命令2:
nohup jupyter notebook --allow-root > jupyter.log 2>&1 &
用&让命令后台运行, 并把标准输出写入jupyter.log中
nohup表示no hang up, 就是不挂起, 这个命令执行后即使终端退出, Jupyter也不会停止运行.
第八步:关闭后台运行的Jupyter(如果 需要的话)
1、找到Jupyter进程PID(关闭在前面后台执行的进程的步骤,首先找到其进程PID)
ps -ef | grep xxxx
ps -ef : 查看本机所有的进程;
grep xxxx代表过滤找到条件xxxx的进程
2、kill掉Jupyter进程
kill -9 PID
kill -9 具体的进程的PID
3、whereis python 查找本机安装 的所有python 版本及路径
4、ll /usr/bin/python 查看python的快捷方式
5、ln -s /home/haimodp/anaconda3/bin/python3.6 /usr/bin/python
建立python的快捷方式链接
更多推荐
所有评论(0)