为什么我的代码不能在 ipython notebook 上执行?
Why my code does'nt execute on ipython notebook?
我对 jupyter notebook 完全陌生,我正在尝试 运行 一个简单的代码,但它不起作用。
我输入 print (1) 并按 ctrl + enter,然后那个星号出现了,差不多就是这样。控制台中也有一个闪烁的 "connected"。
命令 window 如下所示:
如有任何相关提示,我们将不胜感激。谢谢
是的,正如提莫指出的那样,我所要做的就是使用它,
C:\Python27\Scripts>jupyter notebook --port=8889
而不是
C:\Python27\Scripts>jupyter 笔记本。
端口 8889,工作得很好 :)
在 VM 上使用 Jupyter,这对我来说也是解决方案。此外,您可以创建一个配置文件:
jupyter notebook --generate-config
并在您的 jupyter_notebook_config.py
文件中搜索 c.NotebookApp.port = 8888
(并将端口更改为 8889)
所以你不必在每次调用 jupyter 时手动添加端口。
我遇到了同样的问题,更改主机端口没有解决任何问题。我最终不得不卸载 jupyter 网络包。我通过 "pip install" 安装它很好,我建议也使用以下命令卸载它并仅通过 conda 重新安装它:
conda uninstall jupyter notebook
pip uninstall jupyter
pip3 uninstall jupyter
conda install jupyter notebook
我对 jupyter notebook 完全陌生,我正在尝试 运行 一个简单的代码,但它不起作用。
我输入 print (1) 并按 ctrl + enter,然后那个星号出现了,差不多就是这样。控制台中也有一个闪烁的 "connected"。
命令 window 如下所示:
如有任何相关提示,我们将不胜感激。谢谢
是的,正如提莫指出的那样,我所要做的就是使用它,
C:\Python27\Scripts>jupyter notebook --port=8889
而不是
C:\Python27\Scripts>jupyter 笔记本。
端口 8889,工作得很好 :)
在 VM 上使用 Jupyter,这对我来说也是解决方案。此外,您可以创建一个配置文件:
jupyter notebook --generate-config
并在您的 jupyter_notebook_config.py
文件中搜索 c.NotebookApp.port = 8888
(并将端口更改为 8889)
所以你不必在每次调用 jupyter 时手动添加端口。
我遇到了同样的问题,更改主机端口没有解决任何问题。我最终不得不卸载 jupyter 网络包。我通过 "pip install" 安装它很好,我建议也使用以下命令卸载它并仅通过 conda 重新安装它:
conda uninstall jupyter notebook
pip uninstall jupyter
pip3 uninstall jupyter
conda install jupyter notebook