腾讯云Ubuntu20.04配置Jupyter notebook
Posted 只是有点小怂
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了腾讯云Ubuntu20.04配置Jupyter notebook相关的知识,希望对你有一定的参考价值。
- 首先点名表扬下腾讯云,镜像源使用的都是自己的,下载速度快到飞起
- 首先安装
sudo apt-get install jupyter notebook
,注意不要使用pip3安装不然打不开提示jupyter not found - 生成配置文件
jupyter notebook --generate-config
,并输入jupyter notebook password
配置密码(这样不用去记那个啥哈希值了) - 修改配置文件
vim ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip='*' # 代表任意ip是都可以访问jupyter
c.NotebookApp.notebook_dir='/home/ubuntu/jupyter' # notebook的工作目录,可以自己的实际情况修改,注意要确保目录存在
c.NotebookApp.open_browser = False # 不打开浏览器
c.NotebookApp.port =8888 #可自行指定一个端口, 访问时使用该端口
- 云服务器上打开8888端口
- ssh连接中输入jupyter book,本地浏览器输入服务器公网IP:8888就可以打开jupyter
- 参考博客 云服务器配置远程jupyter notebook环境 https://zhuanlan.zhihu.com/p/384888122
以上是关于腾讯云Ubuntu20.04配置Jupyter notebook的主要内容,如果未能解决你的问题,请参考以下文章
腾讯云Ubuntu20.04配置Jupyter notebook
腾讯云Ubuntu20.04配置Jupyter notebook