【发布时间】:2021-07-19 13:03:44
【问题描述】:
我想从我的服务器运行 jupyter。 我的IP服务器是:172.172.10.10。 我试图用这个命令拉图像python:
docker run -p 8888:8888 jupyter/scipy-notebook:33add21fab64
然后我尝试连接到容器并安装 jupyter
pip3 install jupyter
jupyter notebook --ip 0.0.0.0 --no-browser --allow-root
然后从我的主机尝试
http://172.172.10.10:8888/?token=9bb378073cXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX2be61c
但总是出现此错误ERR_CONNEXION REFUSED。 请问有谁知道怎么做。 ??
【问题讨论】:
-
jupyter 在哪个端口上运行?
-
@SreeramTP 我应该怎么做?知道吗?
-
你可以试试
jupyter notebook --ip 0.0.0.0 --no-browser --allow-root --port=8888 -
-bash: --port=8888 : 未知命令
-
不要像你在 Q 中提到的那样运行 jupyter,而是像我在上面的评论中提到的那样运行它
标签: python-3.x pandas server jupyter