11
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Jupyter Notebook のアンインストールができない

Last updated at Posted at 2018-09-15

Jupyter Notebook のアンインストール ができない

参考
How to uninstall jupyter - Stack Overflow

問題

公式をもとにpipでJupyter Noteboookをインストールした。

$ python3 -m pip install --upgrade pip
$ python3 -m pip install jupyter

これのアンインストールができない。

目的

$ which jupyter notebook

で何も表示されない。

失敗例

autoremoveを使っても消えない。

$ pip install pip-autoremove
$ pip-autoremove jupyter
$ which jupyter
/Users/******/.pyenv/shims/Jupiter

この後、下記コマンドを試すも消えず。

$ pip uninstall jupyter
Uninstalling jupyter-1.0.0:
.
Successfully uninstalled jupyter-1.0.0

$ pip uninstall jupyter
Skipping jupyter as it is not installed.

$ which jupyter
/Users/****/.pyenv/shims/jupyter

成功例

下記コマンドでコアをアンインストールに指定することで、アンインストールできた。

$ pip uninstall jupyter_core 
Successfully uninstalled jupyter-core-4.4.0
$ which jupyter
何も無し

補足

$ pip3 install jupyter の最後の行にjupyter-coreがインストールされていることが確認できる。

Installing collected packages: jupyter, jupyter-core
Successfully installed jupyter-1.0.0 jupyter-core-4.4.0
11
9
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?