Python3 jupyter notebook 服务器搭建过程

yipeiwu_com5年前服务器

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. 启动 jupyter notebook

•直接运行

jupyter notebook

•后台运行

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

总结

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

相关文章

PHP实现检测客户端是否使用代理服务器及其匿名级别

要判断客户端是否使用代理服务器,可以从客户端所发送的环境变量信息来判断。 具体来说,就是看HTTP_VIA字段,如果这个字段设置了,说明客户端使用了代理服务器。 匿名级别可以参考下表来判...

python 编写简单网页服务器的实例

IDE:Pycharm sever.py #!/bin/python #-*- coding: UTF-8 -*- #文件名:server.py #create by wzh 201...

python服务器端收发请求的实现代码

最近学习了python的一些服务器端编程,记录在此。 发送get/post请求 # coding:utf-8 import httplib,urllib #加载模块 #urllib可...

Python写的Socks5协议代理服务器

直接上代码: #!/usr/bin/python # Filename s5.py # Python Dynamic Socks5 Proxy # Usage: python...

在DigitalOcean的服务器上部署flaskblog应用

在DigitalOcean上部署了flaskblog,项目虽小,部署中也学到了很多东西。 操作系统选择的是Ubuntu14.04,原因就是平时自己主要使用这个版本,顺手而已,所以你自己...