从电源外壳午餐时Jupyter Notebook内核未连接

时间:2019-02-26 05:32:45

标签: python python-3.x jupyter-notebook

我面临着一个奇怪的问题,当我直接从CMD启动Jupyter Notebook时,它运行正常,但是当我从Powershell启动时,它无法连接至内核。

我也已经安装了piply plotly,当我在powershell中导入piply时,我能够正确导入,但是在jupyter中也是如此,它说没有模块名称Plotly(带有正确的大小写)?

jupyter 4.4.0和Python 3.6.5,iPython已经更新

issue on powershell same file with jupyter cmd 我无法找出可能导致此问题的原因。 或检查内核的东西。 有人可以帮我解决这个问题吗?

2 个答案:

答案 0 :(得分:0)

在powershell python -m notebook上尝试一下

答案 1 :(得分:0)

根据github issue尝试将提示符工具包降级为1.0.15版本

pip3 install 'prompt-toolkit<2.0.0,>=1.0.15' --force-reinstall

Python 3.6.5
jupyter 1.0.0
jupyter-client 5.2.3
jupyter-console 5.2.0
jupyter-core 4.4.0
ipython 6.4.0

您甚至可以尝试升级iPython

pip3 install --upgrade --user ipython