【发布时间】:2017-04-10 15:19:52
【问题描述】:
我按照以下instructions 安装了Jupyter notebook(单用户模式)。
但是,我实际上需要安装多用户(Jupyter-hub)应用程序。
如何卸载此应用程序?
仅供参考 - 使用 Centos 6.8
谢谢
【问题讨论】:
我按照以下instructions 安装了Jupyter notebook(单用户模式)。
但是,我实际上需要安装多用户(Jupyter-hub)应用程序。
如何卸载此应用程序?
仅供参考 - 使用 Centos 6.8
谢谢
【问题讨论】:
您可以通过运行删除 Jupyter Notebook:
conda remove jupyter jupyter-client jupyter-console jupyter-core
你可以通过运行安装 Jupyterhub:
conda install -c conda-forge jupyterhub
我相信这个包只兼容 Python 3。
【讨论】:
~/USER/NAME/anaconda/lib/python2.7/site-packages/ 以获取这些:jupyeter_client, jupyter_console 和 jupyter_core。如果有,只需运行conda remove jupyter jupyter_client jupyter_console jupyter_core
我不得不使用:
conda uninstall jupyter_core nbformat nbconvert notebook
【讨论】: