python - How to uninstall jupyter -
i have been trying uninstall jupyter
i have tried following commands
pip uninstall jupyter pip3 uninstall jupyter
and
rm -rf /users/$user/library/jupyter/*
even after running these commands when type jupyter in terminal following message
usage: jupyter [-h] [--version] [--config-dir] [--data-dir] [--runtime-dir] [--paths] [--json] [subcommand] jupyter: error: 1 of arguments --version subcommand --config-dir --data-dir --runtime-dir --paths required
what going wrong , why still able use command?
when $ pip install jupyter
several dependencies installed. best way uninstall running:
$ pip install pip-autoremove
$ pip-autoremove jupyter -y
kindly refer related question.
pip-autoremove
removes package , unused dependencies. here docs.
Comments
Post a Comment