Python3 jupyter notebook 服务器搭建过程
程序员文章站
2022-03-28 08:54:37
1. jupyter notebook 安装
•创建 jupyter 目录
mkdir jupyter
cd jupyter/
•...
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实现名片管理系统
推荐阅读
-
Python3之简单搭建自带服务器的实例讲解
-
windows系统中Python多版本与jupyter notebook使用虚拟环境的过程
-
NodeJS基础API搭建服务器详细过程记录
-
详解CentOS的SVN服务器搭建与自动部署全过程
-
详解Nginx搭建图片服务器过程
-
CentOS7 + node.js + nginx + MySQL搭建服务器全过程
-
Python3之简单搭建自带服务器的实例讲解
-
搭建项目后台环境,把jar包部署到云服务器上面的过程
-
远程连接服务器端Jupyter Notebook
-
jupyter notebook打开后新建一个python3之后连接不上网呢或者报错error!解决办法