Linux下安装配置Jupyter
Posted ggg566
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下安装配置Jupyter 相关的知识,希望对你有一定的参考价值。
原文: http://blog.gqylpy.com/gqy/319
""" 第一步 安装 """ 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 # 进入登陆页面后,输入刚刚生成的密码即可
原文: http://blog.gqylpy.com/gqy/319
以上是关于Linux下安装配置Jupyter 的主要内容,如果未能解决你的问题,请参考以下文章
Linux(ubuntu)下安装anaconda(64位)并配置jupyter notebook远程访问
Linux下配置jupyter notebook远程访问实战:配置Jupyter的连接密码启动jupyter服务远程访问jupyter(关闭防火墙)
linux下jupyter 配置spark,出现jupyter notebook requires javascript怎么处理