Jupyterをアンインストールしようとしています
私は次のコマンドを試しました
pip uninstall jupyter
pip3 uninstall jupyter
そして
rm -rf /Users/$user/Library/Jupyter/*
端末でjupyterと入力したときにこれらのコマンドをすべて実行した後でも、次のメッセージが表示されます
usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir]
[--paths] [--json]
[subcommand]
jupyter: error: one of the arguments --version subcommand --config-dir --data-dir --runtime-dir --paths is required
正確に何が間違っているのか、なぜこのコマンドを使用できるのですか?
pip-autoremove
(他のパッケージ間で共有されている依存関係を削除するため)とpip3 uninstall jupyter
を使用して一部のパッケージを削除したくない場合は、次の手順を実行します。Sudo
は必要に応じて必要になる場合があります。
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console notebook qtconsole nbconvert nbformat
上記のコマンドは、jupyter
特定のパッケージのみをアンインストールします。他のパッケージ間で共有される可能性があるため、アンインストールする他のパッケージを追加していません(例:Jinja2
はFlask
で使用され、ipython
はパッケージ自体の別個のセット、tornado
再び他者によって使用される可能性があります)。
いずれにせよ、すべての依存関係は以下に記載されています(2019年3月19日現在。jupyter==4.4.0
)
すべての依存関係を削除したい場合は、 Stan_MD の答えを使用できます。
attrs
backcall
bleach
decorator
defusedxml
entrypoints
ipykernel
ipython
ipython-genutils
ipywidgets
jedi
Jinja2
jsonschema
MarkupSafe
mistune
pandocfilters
parso
pexpect
pickleshare
prometheus-client
Prompt-toolkit
ptyprocess
Pygments
pyrsistent
python-dateutil
pyzmq
Send2Trash
six
terminado
testpath
tornado
traitlets
wcwidth
webencodings
widgetsnbextension
pip3 uninstall jupyter
pip3 uninstall jupyter_core
pip3 uninstall jupyter-client
pip3 uninstall jupyter-console
pip3 uninstall notebook
pip3 uninstall qtconsole
pip3 uninstall nbconvert
pip3 uninstall nbformat
jupyter
dist-packagesをアンインストールします。
pip3 uninstall jupyter
jupyter_core
dist-packagesをアンインストールします(次のバイナリもアンインストールします:jupyter
、jupyter-migrate
、jupyter-troubleshoot
):
pip3 uninstall jupyter_core
アンインストールjupyter-client
:
pip3 uninstall jupyter-client
アンインストールjupyter-console
:
pip3 uninstall jupyter-console
アンインストールjupyter-notebook
(次のバイナリもアンインストールします:jupyter-bundlerextension
、jupyter-nbextension
、jupyter-notebook
、jupyter-serverextension
):
pip3 uninstall notebook
アンインストールjupyter-qtconsole
:
pip3 uninstall qtconsole
アンインストールjupyter-nbconvert
:
pip3 uninstall nbconvert
アンインストールjupyter-trust
:
pip3 uninstall nbformat
pip uninstall jupyter_core
を試してください。以下の詳細:
JupyterノートブックにPython 2ノートブックしか表示されないときに、同様の問題が発生しました。 (Python 3ノートブックなし)
pip unistall jupyter
、pi3 uninstall jupyter
、および推奨されるpip-autoremove jupyter -y
によってjupyterをアンインストールしようとしました。
何も機能しませんでした。 which jupyter
を実行し、/home/ankit/.local/bin/jupyter
を取得しました
ファイル/home/ankit/.local/bin/jupyter
は単純なpythonコードでした:
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from jupyter_core.command import main
if __== '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())
モジュールjupyter_core
をpip uninstall jupyter_core
でアンインストールしようとしましたが、動作しました。
Jupyterをpip3 install jupyter
で再インストールすると、すべてが正常に戻りました。
Anacondaを介してJupiterノートブックをインストールした場合、これが役立つ場合があります。
conda uninstall jupyter notebook
Jupyter Notebookを使用している場合は、次のように削除できます。
pip uninstall notebook
Condaでインストールした場合は、conda uninstallを使用する必要があります。
python 3.7の場合:
PATHとして次を追加していない場合は、ディレクトリを変更します。cd C:\ Users {user_name}\AppData\Local\Programs\Python\Python37-32\Scriptsパッケージ/アプリケーションがインストール/配置されている場所を確認するには、次のように入力します: "where program_name" like> where jupyter場所が見つからない場合は、PATHに場所を追加する必要があります。
タイプ:pip-autoremove jupyter y/nを入力してアクションを確認するように求められます。