linux centos7 系统安装 jupyter notebook

24 篇文章 0 订阅
1 篇文章 0 订阅

1.安装pip

yum install python-pip

pip install jupyter

如果安装比较慢可以切换为国内源:

http://mirrors.aliyun.com/pypi/simple/  或者 https://pypi.tuna.tsinghua.edu.cn/simple

pip install  jupyter  --trusted-host mirrors.aliyun.com -i http://mirrors.aliyun.com/pypi/simple/

遇到报错:ERROR: Package 'jupyter-console' requires a different Python: 2.7.5 not in '>=3.5'

解决办法,安装低版本jupyter-console

pip install  jupyter_console==5.0.0  -i https://pypi.tuna.tsinghua.edu.cn/simple

然后再次安装jupyter

 pip install  jupyter  -i https://pypi.tuna.tsinghua.edu.cn/simple

查看是否安装成功

如果正常显示帮助页面,则安装成功

jupyter notebook --help

2.启动jupyter notebook

直接运行命令:

jupyter notebook  &     ##后台运行

如果是root用户会提示怎加--allow-root参数

这种情况启动时,只支持本机访问,如果需要远程访问,如下

jupyter notebook --allow-root  --port 8888 --ip=0.0.0.0  & 

还可设置密码并写入配置文件

控制台输入 python  导入notebook.auth 中passwd模块设置密码

将生成的sha密文写入到下面配置文件中

jupyter notebook --generate-config      ##生成默认配置文件

/root/.jupyter/jupyter_notebook_config.py

------------------------------------------------------------------------

c.NotebookApp.ip='0.0.0.0'
c.NotebookApp.password = '*****'     #sha 密文
c.NotebookApp.open_browser = False    ##取消自动打开浏览器
c.NotebookApp.port =8888   

-------------------------------------------------------------------------

页面如下:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值