经验首页 前端设计 程序设计 Java相关 移动开发 数据库/运维 软件/图像 大数据/云计算 其他经验
当前位置:技术经验 » 程序设计 » Python3 » 查看文章
Python3 jupyter notebook 服务器搭建过程
来源:jb51  时间:2018/12/3 9:48:07  对本文有异议

1. jupyter notebook 安装

•创建 jupyter 目录

  1. mkdir jupyter
  2. cd jupyter/

•创建独立的 Python3 运行环境,并激活进入该环境

  1. virtualenv --python=python3 --no-site-packages venv
  2. source venv/bin/activate

•安装 jupyter

  1. pip install jupyter

2. jupyter notebook 配置

•创建 notebooks 目录

  1. mkdir notebooks

用于保存网页端创建的 ipynb 文件。

•生成配置文件

  1. jupyter notebook --generate-config

生成的配置文件保存在当前用户的 .jupyter 目录下。

•生成密码密文

  1. python -c "import IPython; print(IPython.lib.passwd())"

执行后输入密码,生成类似 'sha1:xxx:xxx' 的密文。

•修改配置文件

  1. c.NotebookApp.allow_remote_access = True # 允许远程访问
  2. c.NotebookApp.ip = '*' # 允许任意ip访问此服务器
  3. c.NotebookApp.password = 'sha1:xxx:xxx' # 上一步生成的密文
  4. c.NotebookApp.open_browser = False # 运行时不打开本机浏览器
  5. c.NotebookApp.allow_root =True # 允许使用 root 权限运行
  6. c.NotebookApp.port = 8888 # 指定 jupyter notebook 使用的端口
  7. c.ContentsManager.root_dir = 'notebooks' # 指定 ipynb 等文件的保存目录

3. 启动 jupyter notebook

•直接运行

  1. jupyter notebook

•后台运行

  1. nohup jupyter notebook > ~/jupyter/jupyter.log 2>&1 &

总结

以上所述是小编给大家介绍的Python3 jupyter notebook 服务器搭建,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对w3xue网站的支持!

 友情链接:直通硅谷  点职佳  北美留学生论坛

本站QQ群:前端 618073944 | Java 606181507 | Python 626812652 | C/C++ 612253063 | 微信 634508462 | 苹果 692586424 | C#/.net 182808419 | PHP 305140648 | 运维 608723728

W3xue 的所有内容仅供测试,对任何法律问题及风险不承担任何责任。通过使用本站内容随之而来的风险与本站无关。
关于我们  |  意见建议  |  捐助我们  |  报错有奖  |  广告合作、友情链接(目前9元/月)请联系QQ:27243702 沸活量
皖ICP备17017327号-2 皖公网安备34020702000426号