2017-10-29 12 views
0

jupyterがインストールされていますが、アンインストールします。ただし、これは不可能です:要件jupyterをアンインストールできません。インストールされていません。

$ pip freeze | grep jupyter 

$ pip3 freeze | grep jupyter 
jupyter-client==5.1.0 
jupyter-console==5.2.0 
jupyter-core==4.3.0 

$ pip3 uninstall jupyter 
Cannot uninstall requirement jupyter, not installed 

$ which jupyter 
/usr/local/bin/jupyter 

私はこのjupyterを削除するために何ができますか?

EDIT 後:私はしかし、まだ残っているこの3つのパッケージをアンインストールしたsudo pip3 uninstall jupyter-client jupyter-console jupyter-coreは(2xTab)は次のとおりです。

$ jupyter- 
jupyter-bundlerextension jupyter-nbconvert   jupyter-nbextension  jupyter-notebook   jupyter-qtconsole   jupyter-serverextension jupyter-trust 

そして、ピップは、彼らが存在しないと言う:

$ pip3 freeze | grep jupyter 
$ pip freeze | grep jupyter 

としようそれらのいずれかを削除するには、私は同じを持っています:

sudo -H pip uninstall jupyter-notebook 
Cannot uninstall requirement jupyter-notebook, not installed 

これらのパッケージを完全に削除するにはどうすればいいですか?

+0

を試してみて、単に "jupyter" と呼ばれるインストール誰パッケージはありません 'PIP3アンインストールjupyter-クライアントjupyter・コンソールjupyter-core' – jdoe

+0

を試してみてください。あなたのgrepが示すように、 'jupyter-core'をアンインストールする必要があります。 – Iguananaut

+0

@jdoeそれは3つのパッケージだけを削除しましたが、まだ 'pip'には見えないJupyter関連パッケージをすべて削除しませんでした。私は編集で新しいものを入れて見てください。それらも削除するには? – mCs

答えて

0

あなたが言及したスクリプトは、notebookというpipパッケージで提供されています。これは、jupyterメタパッケージの一部としてインストールできますが、スタンドアロンでインストールすることもできます。

sudo -H pip uninstall notebook 
関連する問題