本地访问服务器jupyter notebook
程序员文章站
2022-05-27 19:22:31
...
本地访问服务器jupyter notebook
1 默认服务器上jupyter notebook安装完成(建议使用Anaconda,自带jupyter)
2 配置环境,通过远程方式访问jupyter notebook
$ jupyter notebook --generate-config --allow-root
3 生成登录密码
$ python
Python 3.6.6 |Anaconda, Inc.| (default, Jun 28 2018, 17:14:51)
[GCC 7.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from notebook.auth import passwd
>>> passwd()
Enter password:
Verify password:
'sha1:e014e86fa5e2:5f486fca6f143dc92cc7fd8f06d5714205be5523'
>>> exit()
4 修改配置文件
vim ~/.jupyter/jupyter_notebook_config.py
c.NotebookApp.ip='*'
c.NotebookApp.password = u'sha1:e014e86fa5e2:5f486fca6f143dc92cc7fd8f06d5714205be5523'
c.NotebookApp.open_browser = False
c.NotebookApp.port =8888
5 服务器打开jupyter notebook
jupyter notebook --ip=0.0.0.0 --no-browser --allow-root
6 本地访问 http://服务器IP:8888
推荐阅读
-
nodejs搭建本地服务器并访问文件的方法
-
linux服务器上使用nginx访问本地静态资源的方法
-
nodejs构建本地web测试服务器 如何解决访问静态资源问题
-
Apache2.4.x版wampserver本地php服务器如何让外网访问及启用.htaccess
-
Jupyter-Notebook 远程访问
-
远程连接服务器端Jupyter Notebook
-
使用node.js创建一个简易服务器,让本地的HTML页面可以通过localhost方式访问
-
云服务centos搭建jupyter notebook并通过外网访问
-
Android模拟器访问本地服务器localhost
-
如何在 Windows 服务器建立外网可访问的 Jupyter Lab Server