记录在服务器端使用Jupyter notebook
程序员文章站
2022-03-03 14:46:18
...
背景叙述
已有环境:linux服务器,miniconda,python3
参考文章
https://www.cnblogs.com/thousfeet/p/10647102.html
过程
1.安装jupyter
conda install jupyter
2.生成配置文件
jupyter notebook --generate-config
3.配置密码
jupyter notebook password
4.配置SSL
由于期间我由于SSL ERROR无法连接,所以并没有配置,可能会产生安全问题
5.写入配置文件
jupyter-notebook-config.py中修改
# Set options for certfile, ip, password, and toggle off
# browser auto-opening
c.NotebookApp.certfile = u'/absolute/path/to/your/certificate/mycert.pem' #i delete this line and the next line
c.NotebookApp.keyfile = u'/absolute/path/to/your/certificate/mykey.key'
# Set ip to '*' to bind on all interfaces (ips) for the public server
c.NotebookApp.ip = '*'
c.NotebookApp.password = u'sha1:bcd259ccf...<your hashed password here>'
c.NotebookApp.open_browser = False
# It is a good idea to set a known, fixed port for server access
c.NotebookApp.port = 8890
最后在本机浏览器进行端口映射就可以
ssh -L 1234:xx.xx.xx.xx:8890 [email protected] -fN
本地浏览器键入
http://127.0.0.1:1234就好了嘎嘎嘎
上一篇: 远程使用jupyter notebook
推荐阅读
-
anaconda 环境新建/删除/拷贝 jupyter notebook上使用python虚拟环境 TensorFlow
-
非线性函数的最小二乘拟合——兼论Jupyter notebook中使用公式 [原创]
-
Jupyter Notebook使用笔记
-
Jupyter Notebook使用 tqdm显示进度条(单行显示)
-
远程连接服务器端Jupyter Notebook
-
ModuleNotFoundError: No module named 'torch'(anaconda安装好Pytorch却无法在Jupyter notebook使用)
-
jupyter notebook的使用
-
jupyter notebook快速入门及使用详解
-
【解决方案】在Pycharm使用jupyter要求填写token【please enter your jupyter notebook url】
-
在Anaconda虚拟环境中使用jupyter notebook