• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Python3 jupyter notebook 服务器搭建过程

python 搞代码 4年前 (2022-01-07) 14次浏览 已收录 0个评论

这篇文章主要介绍了Python3 jupyter notebook 服务器搭建过程,非常不错,具有一定的参考借鉴价值,需要的朋友参考下吧

1. jupyter notebook 安装

•创建 jupyter 目录

 mkdir jupyter cd jupyter/

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

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

•安装 jupyter

 pip install jupyter

2. jupyter notebook 配置

•创建 notebooks 目录

 mkdir notebooks

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

•生成配置文件

 jupyter notebook --generate-config

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

•生成密码密文

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

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

•修改配置文件

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

3. 启动 ju来源gaodai$ma#com搞$代*码*网pyter notebook

•直接运行

 jupyter notebook

•后台运行

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

总结

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

以上就是Python3 jupyter notebook 服务器搭建过程的详细内容,更多请关注gaodaima搞代码网其它相关文章!


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Python3 jupyter notebook 服务器搭建过程

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址