【发布时间】:2019-08-05 05:33:06
【问题描述】:
我发布这个问题是因为我在对 SO 等进行多次筛选/故障排除时无法解决这个问题。
我已成功安装以下所有软件包,pip list、conda list 显示:
我用来安装包的代码:
!pip install jupyter_contrib_nbextensions
!pip install https://github.com/ipythoncontrib/jupyter_contrib_nbextensions/tarball/master
jupyter contrib nbextension install --user
我也尝试了最后一行
jupyter contrib nbextensions install --sys-prefix --skip-running-check
我最终得到错误:
File "<ipython-input-5-1c0e089b301b>", line 1
jupyter contrib nbextension install --user
^
SyntaxError: invalid syntax
当以管理员模式在终端上运行时,我得到:
C:\WINDOWS\system32>python -m pip install jupyter_contib_nbextensions
Collecting jupyter_contib_nbextensions
ERROR: Could not find a version that satisfies the requirement jupyter_contib_nbextensions (from versions: none)
ERROR: No matching distribution found for jupyter_contib_nbextensions
我在这里缺少什么?我也试过升级jupyter, ipython;提前致谢。
【问题讨论】:
标签: python-3.x jupyter-notebook