我面临着一个奇怪的问题,当我直接从CMD启动Jupyter Notebook时,它运行正常,但是当我从Powershell启动时,它无法连接至内核。
我也已经安装了piply plotly,当我在powershell中导入piply时,我能够正确导入,但是在jupyter中也是如此,它说没有模块名称Plotly(带有正确的大小写)?
jupyter 4.4.0和Python 3.6.5,iPython已经更新
答案 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