相关疑难解决方法(0)

为什么我无法访问远程Jupyter Notebook服务器?

我在我的centos6.5服务器上启动了一个Jupyter Notebook服务器.而jupyter正在运行

[I 17:40:59.649 NotebookApp] Serving notebooks from local directory: /root
[I 17:40:59.649 NotebookApp] 0 active kernels 
[I 17:40:59.649 NotebookApp] The Jupyter Notebook is running at:https://[all ip addresses on your system]:8045/
[I 17:40:59.649 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to skip confirmation).
Run Code Online (Sandbox Code Playgroud)

当我想在同一局域网中远程访问Jupyter时,比如打开http://192.168.1.111:8045/,我根本无法打开Jupyter页面.顺便说一句,我可以成功访问远程centos服务器.

可能的原因是什么?

jupyter-notebook

49
推荐指数
8
解决办法
6万
查看次数

如何禁用Jupyter笔记本会话的密码请求?

我使用以下命令多年来一直在推出Jupyter Notebook:

jupyter-notebook --port=7000 --no-browser --no-mathjax
Run Code Online (Sandbox Code Playgroud)

当我尝试在浏览器上打开jupyter时,它会向我询问密码,即使我以前从未设置过任何密码.重要的是要注意,如果我将端口设置为不同于7000 (eg., the default 8888)接口的值将打开没有问题

我在本地运行jupyter,并在以下设置:

Python 3.5.2
Run Code Online (Sandbox Code Playgroud)

安装以下模块:

jupyter (1.0.0), jupyter-client (4.4.0), jupyter-console (5.0.0), jupyter-core (4.2.1), ipykernel (4.5.2), ipython (5.1.0), ipython-genutils (0.1.0), nbconvert (4.3.0), nbformat (4.2.0), notebook (4.3.0)
Run Code Online (Sandbox Code Playgroud)

注意:我没有jupyter配置文件

以下是服务器的一些输出行:

[I 19:16:24.358 NotebookApp] Serving notebooks from local directory: /Users/my_user_name
[I 19:16:24.358 NotebookApp] 0 active kernels
[I 19:16:24.358 NotebookApp] The Jupyter Notebook is running at: http://localhost:7000/?token=aa0dab6e2d85766f3e2e4f0f6633e4473db56a56c94cac76
[I 19:16:24.358 NotebookApp] Use Control-C to stop this server and shut down all kernels (twice to …
Run Code Online (Sandbox Code Playgroud)

python ipython python-3.5 jupyter jupyter-notebook

25
推荐指数
6
解决办法
3万
查看次数

在远程服务器上使用ein(emacs ipython notebook)

我已经安装并配置了ein(emacs ipython notebook)来在我的本地linux/mac机器上工作.但是,我想使用ein在远程服务器上打开ipython笔记本并在ein中运行它们.这是否可能,如果是这样,有人可以告诉我如何做到这一点?

python emacs remote-access ipython

5
推荐指数
1
解决办法
1048
查看次数