安装python3
查看当前python版本
[root@iz1i4qd6oynml0z /]# python -V
Python 2.7.5
安装python3以及检查python3的版本
yum install python3
python3 -V
安装jupyter notebook
pip3 install jupyter
生成配置文件
jupyter notebook --generate-config
Writing default config to: /root/.jupyter/jupyter_notebook_config.py
生成密码,用刚装好的python3就可以了
from notebook.auth import passwd
passwd()
然后会得到一个字符串,’sha1:18a311f2bceb:f7bebfa7a61f7057bc034d9affe750c8b65ead6a’
最后是修改一下配置文件
分别是密码,端口号,允许远程连接,默认打开浏览器,默认路径
vim /root/.jupyter/jupyter_notebook_config.py
c.NotebookApp.password = 'sha1:18a311f2bceb:f7bebfa7a61f7057bc034d9affe750c8b65ead6a'
c.NotebookApp.port = 8888
c.NotebookApp.ip = '*'
c.NotebookApp.open_browser = False
c.NotebookApp.notebook_dir = '/jupyter_notebook'
启动jupyter notebook
jupyter notebook --allow-root
如果想挂在后台运行的话用nohup命令,然后按一下enter,退出终端的话用exit就可以了,默认会将日志文件输出到当前目录的nohup.out
nohup jupyter notebook --allow-root &
如果不输出日志文件可以把日志文件输出到黑洞
nohup jupyter notebook --allow-root >/dev/null 2>&1 &
想要退出的话可以查询jupyter notebook占用了哪个进程
ps -aux | grep jupyter
或者是查询端口号8888被哪个进程占用了
netstat -tunlp|grep 8888
然后把找到的进程kill掉就可以了
kill 20627
相关文章
标签:服务器技术
- •VMware Workstation Pro 16安装CentOS7超详细图文步骤
- •CentOS7下配置使用JumpServer 堡垒机 (图文教程)
- •CentOS安装jdk的几种方法及配置环境变量方式
- •CentOS忘记密码修改方案以及centos卡在开机登录界面,命令失效的解决方法
- •解决笔记本安装centos7后无法调节屏幕亮度
- •VMware安装CentOS 8.1(CentOS 8系列可参考)的图文详细教程
- •CentOS7 minimal 最小化安装网络设置过程
- •CentOS7下搭建JumpServer
- •CentOS安装rpm包出现冲突时的解决办法
- •Vmware下CentOS7最小化安装方式