- How to uninstall Jupyter Notebook
- What is Jupyter Notebook
- What is Anaconda
- What is Miniconda
How to uninstall Jupyter Notebook
To uninstall Jupyter Notebook follow these steps:
-
Open a terminal or command prompt.
-
Type
pip freeze
to see a list of installed packages. -
Locate the entry for Jupyter Notebook, and then type
pip uninstall jupyter
to uninstall it.
Alternatively, you can use the conda
command if you have Anaconda or Miniconda installed on your system. In this case, you can use the following steps:
-
Open a terminal or command prompt.
-
Type
conda list
to see a list of installed packages. -
Locate the entry for Jupyter Notebook, and then type
conda remove jupyter
to uninstall it.
Suppose you have any trouble uninstalling Jupyter Notebook. In that case, you can try using the --yes
or -y
flag to force the uninstallation, or you can consult the documentation for the pip
or conda
command for more options.
What is Jupyter Notebook
Jupyter Notebook is an open-source web application that allows you to create and share documents that contain live code, equations, visualizations, and narrative text. It is commonly used for data cleaning and transformation, numerical simulation, statistical modelling, data visualization, machine learning, and much more.
Jupyter Notebook is based on the IPython kernel, which allows you to execute Python code in a Jupyter Notebook. However, Jupyter Notebook also supports other languages, such as R, Julia, and Scala so you can use it with many different programming languages.
Jupyter Notebook is a useful tool for data scientists, data analysts, and anyone who works with data in any capacity. It allows you to combine code, text, and visualizations in a single document, which makes it a great platform for explaining and presenting data-driven ideas.
What is Anaconda
Anaconda is a free and open-source distribution of the Python and R programming languages for scientific computing that aims to simplify package management and deployment. Package versions are managed by the package management system conda
.
Anaconda is widely used in the data science and machine learning community and is included in many data science packages and collections. It comes with many pre-installed packages and environments, making it easy to start with data science and machine learning tasks.
Anaconda also includes the conda
command-line tool, which allows you to easily install, update, and manage your packages and environments. This makes it a powerful platform for working with data and allows you to reproduce your work on other systems easily.
In summary, Anaconda is a popular and user-friendly distribution of Python and R programming languages, making it easy to start with data science and machine learning.
What is Miniconda
Miniconda is a free and open-source minimal distribution of the Anaconda Python and R programming language distribution. It contains only a minimal set of packages and Conda, their package, dependency and environment management system.
Miniconda is useful if you want to have a small and self-contained installation that can be easily transferred to other systems and servers. It allows you to create and manage multiple independent environments with their own packages and dependencies. This can be useful if you need to work with different versions of packages or if you want to avoid conflicting dependencies between your projects.
Miniconda can be installed on Windows, macOS, and Linux systems. It is a smaller alternative to the full Anaconda distribution and is typically used by advanced users who want more control over their Python and R environments.
Follow the next guide if you also want to uninstall Anaconda.
Related video
FAQs
How to uninstall Jupyter Notebook?
To uninstall Jupyter Notebook, you can use the pip uninstall jupyter or conda remove jupyter command in a terminal or command prompt. Alternatively, you can use the —yes or -y flag to force the uninstallation. For more detailed instructions, you can consult the documentation for the pip or conda command.
What is Miniconda?
Miniconda is a free and open-source minimal distribution of the Anaconda Python and R programming language distribution. It contains only a minimal set of packages and Conda, their package, dependency and environment management system.
What is Anaconda?
Anaconda is a free and open-source distribution of the Python and R programming languages for scientific computing, that aims to simplify package management and deployment. Package versions are managed by the package management system conda.
How to remove Jupyter notebook?
To remove Jupyter Notebook, you can simply uninstall it using the command ‘pip uninstall jupyter’. This will remove Jupyter Notebook and all its dependencies from your system.
how to uninstall jupyter notebook in windows
To uninstall Jupyter Notebook in Windows, go to the Control Panel, click ‘Programs and Features’, find Jupyter Notebook in the list of installed programs, and click ‘Uninstall’.
What is Jupyter Notebook?
Jupyter Notebook is an open-source web application that allows you to create and share code, visualizations, and narrative text right in your web browser.
How do I uninstall Jupyter Notebook?
To uninstall Jupyter Notebook, you need to uninstall its dependencies and packages. You can uninstall it using pip or Anaconda.
How do I uninstall Jupyter Notebook using pip?
You can use the following command to uninstall Jupyter Notebook using pip:
pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole
How do I uninstall Jupyter Notebook using Anaconda?
You can use the following commands to uninstall Jupyter Notebook using Anaconda:
To uninstall jupyter_core: conda uninstall jupyter_core
To uninstall nbformat: conda uninstall nbformat
To uninstall nbconvert: conda uninstall nbconvert
To uninstall notebook: conda uninstall notebook
To uninstall jupyter_console: conda uninstall jupyter_console
To uninstall jupyter_client: conda uninstall jupyter_client
To uninstall jupyterlab_pygments: conda uninstall jupyterlab_pygments
To uninstall qtconsole: conda uninstall qtconsole
Are there any packages or dependencies shared among other packages that I need to uninstall as well?
Yes, there are some dependent packages that may need to be uninstalled along with Jupyter Notebook. You can use the following command to remove them:
pip-autoremove jupyter jupyter_core notebook -y
What is jupyter_core?
jupyter_core is a package that provides the basic architecture for Jupyter projects. It provides facilities for registering plugins for applications and loading, saving, and validating configuration files.
Do I need to uninstall jupyter_core to remove Jupyter Notebook?
It is not necessary to uninstall jupyter_core to remove Jupyter Notebook, but it is recommended to avoid any conflicts with other applications or packages that may use it.
What is nbformat?
nbformat is a package that defines the schema for Jupyter Notebook documents. It defines the way data is structured and stored in the .ipynb file format.
What is nbconvert?
nbconvert is a package that allows you to convert Jupyter Notebook files to other document formats, such as HTML, LaTeX, or PDF.
Can I use pip to install Jupyter Notebook after I have uninstalled it?
Yes, you can use the following command to install Jupyter Notebook using pip:
pip install jupyter
Can I use the -m pip uninstall command to remove Jupyter Notebook?
Yes, you can use the following command to uninstall Jupyter Notebook using the -m pip uninstall command:
python -m pip uninstall -y jupyter
Why would I want to uninstall Jupyter Notebook?
You may want to uninstall Jupyter Notebook if you’re no longer using it or if you’re having issues with the application.
How do I uninstall Jupyter Notebook?
There are a few different ways to uninstall Jupyter Notebook, depending on how it was installed. If you used pip to install Jupyter Notebook, you can use the following command to uninstall it:
pip3 uninstall jupyter
What if I get an error when trying to uninstall Jupyter Notebook?
If you get an error when trying to uninstall Jupyter Notebook, you can try adding the –user flag to the uninstall command:
pip3 uninstall jupyter –user
What if I’ve installed additional Jupyter packages?
If you’ve installed additional packages such as jupyter-console or nbconvert, you can remove them using pip-autoremove. First, install pip-autoremove using the following command:
pip3 install pip-autoremove
Then, use the following command to remove the additional packages:
pip-autoremove jupyter-console jupyterlab_pygments notebook qtconsole nbconvert
I installed Jupyter Notebook using Anaconda, how do I uninstall it?
If you installed Jupyter Notebook using Anaconda, you can use the following command to uninstall it:
conda uninstall jupyter notebook
What if I’m using Jupyter Notebook on Windows?
If you’re using Jupyter Notebook on Windows, you can uninstall it using the following command in the Command Prompt:
pip3 uninstall jupyter
How do I uninstall Jupyter Notebook on Mac?
If you’re using a Mac, you can uninstall Jupyter Notebook using pip3. Open Terminal and use the following command:
pip3 uninstall jupyter
What if I want to uninstall Jupyter Notebook and all its dependencies?
If you want to uninstall Jupyter Notebook and all its dependencies, you can use the following commands:
pip3 uninstall notebook
pip3 uninstall qtconsole
pip3 uninstall nbconvert
pip3 uninstall jupyterlab_pygments
pip3 uninstall nbformat
pip3 uninstall jupyter_core
What if I want to make sure Jupyter Notebook is completely uninstalled?
If you want to make sure Jupyter Notebook is completely uninstalled, you can do a search for any remaining Jupyter files on your system and delete them manually.
What is Jupyter Notebook?
Jupyter Notebook is an open-source web application that allows users to create and share documents that contain live code, equations, visualizations, and narrative texts.
Why would I need to uninstall Jupyter Notebook?
You might need to uninstall Jupyter Notebook if you want to update it to a newer version or if you no longer need it on your computer.
How can I uninstall Jupyter Notebook?
There are several ways to uninstall Jupyter Notebook, depending on how you installed it. Here are some common methods:
How can I uninstall Jupyter Notebook using pip?
If you installed Jupyter Notebook using pip, you can uninstall it by running the following command in your terminal or command prompt:
pip3 uninstall jupyter
How can I uninstall Jupyter Notebook using pip-autoremove?
If you installed Jupyter Notebook using pip-autoremove, you can uninstall it by running the following command in your terminal or command prompt:
pip-autoremove jupyter -y
How can I uninstall Jupyter Notebook on Windows?
If you installed Jupyter Notebook on Windows using the executable installer or Anaconda, you can uninstall it by following these steps:
Open the Control Panel
Click on “Programs and Features”
Select “Jupyter Notebook” from the list of installed programs
Click on “Uninstall”
How can I uninstall Jupyter Notebook on Mac?
If you installed Jupyter Notebook on Mac using Anaconda or Homebrew, you can uninstall it by running the following commands in your terminal:
pip3 uninstall jupyter jupyterlab_pygments notebook qtconsole nbconvert nbformat
python3 -m pip uninstall jupyter -y
How can I uninstall Jupyter Notebook on Linux?
If you installed Jupyter Notebook on Linux using pip, you can uninstall it by running the following command in your terminal:
pip3 uninstall jupyter -y
How can I uninstall Jupyter Notebook and all its dependencies?
If you want to uninstall Jupyter Notebook and all its dependencies, you can use the pip-autoremove command. Here’s how:
pip-autoremove jupyter_core jupyter-client nbconvert nbformat notebook qtconsole jupyterlab_pygments -y
Can I uninstall Jupyter Notebook using the “sudo apt-get remove” command?
No, the “sudo apt-get remove” command is not recommended for uninstalling Jupyter Notebook, as it may leave behind residual files and folders. It’s best to use pip or pip-autoremove to uninstall Jupyter Notebook.
Is there a way to uninstall Jupyter Notebook without affecting other Python packages?
Yes, you can use the pip-autoremove command to uninstall Jupyter Notebook and its dependencies without affecting other Python packages. Here’s how:
pip-autoremove jupyter_core jupyter-client nbconvert nbformat notebook qtconsole jupyterlab_pygments -y
Can I copy-paste the commands to uninstall Jupyter Notebook?
Yes, you can copy and paste the following commands in the terminal/command prompt:
pip3 uninstall jupyter
pip3 uninstall jupyter_core
pip3 uninstall nbconvert
pip3 uninstall nbformat
pip3 uninstall jupyter-client
pip3 uninstall jupyter-console
Do I need to uninstall all the dependencies of Jupyter Notebook?
Yes, it is recommended to remove all the dependencies of Jupyter Notebook to avoid any conflicts with the future installations of the software.
How long does it take to uninstall Jupyter Notebook?
It typically takes a few seconds to uninstall Jupyter Notebook and its dependencies.
Can I uninstall Jupyter Notebook without affecting other Python libraries?
Yes, uninstalling Jupyter Notebook will only remove the software and its dependencies. It will not affect other Python libraries or packages installed on your system.
Will my Jupyter Notebook files be deleted after uninstalling the software?
No, uninstalling Jupyter Notebook will not delete your files. Your notebooks will remain intact and you can open them using other software or services.
How do I check if Jupyter Notebook is properly uninstalled?
You can check if Jupyter Notebook is properly uninstalled by typing “jupyter” in the terminal/command prompt. If it returns a “command not found” error, then Jupyter Notebook is successfully uninstalled.
What do I do if I encounter an error while uninstalling Jupyter Notebook?
If you encounter an error while uninstalling Jupyter Notebook, try using the “–user” option along with the uninstallation command. For example, instead of “pip3 uninstall jupyter”, type “pip3 uninstall jupyter –user”. If the error persists, try running the command as an administrator or contact technical support for assistance.
Can I reinstall Jupyter Notebook after uninstalling it?
Yes, you can reinstall Jupyter Notebook after uninstalling it by downloading the software and installing it again.
Is it necessary to uninstall Jupyter Notebook?
It is not necessary to uninstall Jupyter Notebook if you plan to continue using it. However, if you want to remove the software and its dependencies from your system, uninstalling Jupyter Notebook is the recommended approach.
Related articles
-
Where Python is used. Types of Python applications (Updated)
-
What to do if pyenv global is not working — 2023 solution
-
Google Colab vs Jupyter Notebook: Which is Better?
-
How to Open Jupyter Notebook in Chrome
I have been trying to uninstall jupyter
I have tried the following commands
pip uninstall jupyter
pip3 uninstall jupyter
and
rm -rf /Users/$user/Library/Jupyter/*
Even after running all these commands when I type jupyter in the terminal I get the following message
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
What exactly is going wrong and why am I still able to use the command?
Mel
5,86710 gold badges37 silver badges42 bronze badges
asked Oct 10, 2015 at 9:07
5
If you don’t want to use pip-autoremove
(since it removes dependencies shared among other packages) and pip3 uninstall jupyter
just removed some packages, then do the following:
Copy-Paste:
sudo
may be needed as per your need.
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments qtconsole notebook nbconvert nbformat nbclassic nbclient jupyterlab-widgets jupyter-events jupyter-server jupyter-server-terminals
Note:
The above command will only uninstall jupyter
specific packages. I have not added other packages to uninstall since they might be shared among other packages (eg: Jinja2
is used by Flask
, ipython
is a separate set of packages themselves, tornado
again might be used by others).
In any case, all the dependencies are mentioned below(as of 21 Nov, 2020. jupyter==4.4.0
)
If you are sure you want to remove all the dependencies, then you can use Stan_MD’s answer.
argon2-cffi
argon2-cffi-bindings
async-generator
attrs
backcall
bleach
cffi
dataclasses
decorator
defusedxml
entrypoints
importlib-metadata
ipykernel
ipython
ipython-genutils
ipywidgets
jedi
Jinja2
jsonschema
jupyter
jupyter-client
jupyter-console
jupyter-core
jupyterlab-pygments
jupyterlab-widgets
MarkupSafe
mistune
nbclient
nbconvert
nbformat
nest-asyncio
notebook
packaging
pandocfilters
parso
pexpect
pickleshare
prometheus-client
prompt-toolkit
ptyprocess
pycparser
Pygments
pyparsing
pyrsistent
python-dateutil
pyzmq
qtconsole
QtPy
Send2Trash
six
terminado
testpath
tornado
traitlets
typing-extensions
wcwidth
webencodings
widgetsnbextension
zipp
Executive Edit:
pip3 uninstall jupyter
pip3 uninstall jupyter_core
pip3 uninstall jupyter-client
pip3 uninstall jupyter-console
pip3 uninstall jupyterlab_pygments
pip3 uninstall notebook
pip3 uninstall qtconsole
pip3 uninstall nbconvert
pip3 uninstall nbformat
answered Oct 21, 2018 at 5:02
Rahul BharadwajRahul Bharadwaj
2,5562 gold badges18 silver badges29 bronze badges
5
When you $ pip install jupyter
several dependencies are installed. The best way to uninstall it completely is by running:
$ pip install pip-autoremove
$ pip-autoremove jupyter -y
Kindly refer to this related question.
pip-autoremove
removes a package and its unused dependencies. Here are the docs.
answered Jul 16, 2016 at 22:21
Stan_MDStan_MD
1,0119 silver badges8 bronze badges
2
Try pip uninstall jupyter_core
. Details below:
I ran into a similar issue when my jupyter notebook only showed Python 2 notebook. (no Python 3 notebook)
I tried to uninstall jupyter by pip unistall jupyter
, pi3 uninstall jupyter
, and the suggested pip-autoremove jupyter -y
.
Nothing worked. I ran which jupyter
, and got /home/ankit/.local/bin/jupyter
The file /home/ankit/.local/bin/jupyter
was just a simple python code:
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from jupyter_core.command import main
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())
Tried to uninstall the module jupyter_core
by pip uninstall jupyter_core
and it worked.
Reinstalled jupyter with pip3 install jupyter
and everything was back to normal.
answered Aug 9, 2018 at 17:11
Ankit SAnkit S
5055 silver badges9 bronze badges
1
If you installed Jupiter notebook through anaconda, this may help you:
conda uninstall jupyter notebook
Mel
5,86710 gold badges37 silver badges42 bronze badges
answered Jun 22, 2017 at 16:07
NoahCaoNoahCao
2332 silver badges7 bronze badges
1
If you are using jupyter notebook, You can remove it like this:
pip uninstall notebook
You should use conda uninstall if you installed it with conda.
answered Sep 13, 2018 at 14:10
DharmaDharma
2,4453 gold badges26 silver badges40 bronze badges
For python 3.7:
- On windows command prompt, type: «py -m pip install pip-autoremove». You will get a successful message.
-
Change directory, if you didn’t add the following as your PATH:
cd C:\Users{user_name}\AppData\Local\Programs\Python\Python37-32\Scripts
To know where your package/application has been installed/located, type:
«where program_name»
like> where jupyter
If you didn’t find a location, you need to add the location in PATH. -
Type: pip-autoremove jupyter
It will ask to type y/n to confirm the action.
answered Sep 2, 2018 at 13:47
In pip3
pip3 uninstall jupyterlab
answered Nov 26, 2019 at 3:04
J11J11
4554 silver badges8 bronze badges
In my case, I have installed it via pip3 on mac.
pip3 uninstall notebook
answered Jan 24, 2020 at 13:09
For Mac OS, you may use the below command in order to remove files manually.
sudo rm -rf /usr/local/bin/jupyter
answered Nov 12, 2020 at 12:32
I also had the same issue I installed jupyter-lab on my system after I thought I should install it on virtual env. So I tried to uninstall it but pip did not remove its dependencies. I also tried pip-autoremove but It does not found jupyter.
So I found an easy solution.
first I create a virtual env
python -m venv env
after that activate it
source env/bin/activate
Now install jupyter in virtual env
pip install jupyterlab
after that I create requirements.txt
pip freeze > requirements.txt
now we have jupyter and all its dependencies in a txt file
so deactivate virtual env
deactivate
Now we can remove all of the dependencies of jupyter by this txt file.
pip uninstall -r requirements.txt
I found this is the easiest way to remove jupyter
now you can also delete jupyter virtual env.
answered Apr 2, 2021 at 12:38
Use pip uninstall jupyter notebook
if you are using python 3.9+
answered Dec 16, 2021 at 7:59
Use $ pip3 install pip-autoremove
or $ pip-autoremove jupyter -y
to clear all.
check:
pip3 freeze | grep jupyter
which jupyter
And if nothing is back, then which means it is all cleared.
According to this link
answered Aug 29, 2022 at 13:05
DoggyDoggy
459 bronze badges
Did you install jupyter or is it part of the default install? See below. If the default install, just leave it alone. Macos has lots of stuff you will never use, but removing it might just break something because Apple…
From the Python documentation
The Apple-provided build of Python is installed in
/System/Library/Frameworks/Python.framework and /usr/bin/python,
respectively. You should never modify or delete these, as they are
Apple-controlled and are used by Apple- or third-party software.
Remember that if you choose to install a newer Python version from
python.org, you will have two different but functional Python
installations on your computer, so it will be important that your
paths and usages are consistent with what you want to do.
answered Aug 29, 2022 at 1:04
dsagmandsagman
4911 silver badge8 bronze badges
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient
The above code is excatly correct, but in place of python3 it must be written
pip3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient
answered Jun 11, 2022 at 11:40
If you are a data scientist or software engineer who works with Python, you are probably familiar with Jupyter Notebook. It is a popular web-based interactive computing environment that allows you to create and share documents containing live code, equations, visualizations, and narrative text.
⚠ content generated by AI for experimental purposes only
How to Uninstall Python Jupyter Correctly?
If you are a data scientist or software engineer who works with Python, you are probably familiar with Jupyter Notebook. It is a popular web-based interactive computing environment that allows you to create and share documents containing live code, equations, visualizations, and narrative text.
However, there may come a time when you need to uninstall Jupyter Notebook from your system. Perhaps you want to switch to a different development environment, or you are experiencing issues with your current installation. Whatever the reason, it is essential to uninstall Jupyter correctly to avoid any potential conflicts or issues down the road.
In this article, we will walk you through the steps to uninstall Jupyter Notebook from your system, whether you are using Windows, macOS, or Linux.
Uninstalling Jupyter Notebook on Windows
To uninstall Jupyter Notebook on Windows, follow these steps:
-
Open the Control Panel by clicking on the Start menu and typing “Control Panel” in the search bar.
-
Click on “Programs and Features.”
-
Locate “Python” in the list of installed programs and click on it.
-
Click on “Uninstall.”
-
Follow the on-screen prompts to uninstall Python from your system.
-
Once Python is uninstalled, open the Command Prompt by typing “cmd” in the search bar and clicking on “Command Prompt.”
-
In the Command Prompt, type “pip uninstall jupyter” and press Enter.
-
Follow the on-screen prompts to uninstall Jupyter Notebook and any associated packages.
-
Once Jupyter Notebook is uninstalled, you can delete any remaining files or folders associated with it, such as the Jupyter Notebook configuration file.
Uninstalling Jupyter Notebook on macOS
To uninstall Jupyter Notebook on macOS, follow these steps:
-
Open the Terminal application.
-
Type “pip uninstall jupyter” and press Enter.
-
Follow the on-screen prompts to uninstall Jupyter Notebook and any associated packages.
-
Once Jupyter Notebook is uninstalled, you can delete any remaining files or folders associated with it, such as the Jupyter Notebook configuration file.
Uninstalling Jupyter Notebook on Linux
To uninstall Jupyter Notebook on Linux, follow these steps:
-
Open the Terminal application.
-
Type “pip uninstall jupyter” and press Enter.
-
Follow the on-screen prompts to uninstall Jupyter Notebook and any associated packages.
-
Once Jupyter Notebook is uninstalled, you can delete any remaining files or folders associated with it, such as the Jupyter Notebook configuration file.
Conclusion
Uninstalling Jupyter Notebook correctly is essential to avoid any potential conflicts or issues down the road. Whether you are using Windows, macOS, or Linux, the process is straightforward and can be completed in just a few steps.
By following the steps outlined in this article, you can ensure that Jupyter Notebook is fully removed from your system, allowing you to move on to your next project with confidence.
About Saturn Cloud
Saturn Cloud is your all-in-one solution for data science & ML development, deployment, and data pipelines in the cloud. Spin up a notebook with 4TB of RAM, add a GPU, connect to a distributed cluster of workers, and more. Join today and get 150 hours of free compute per month.
Перейти к контенту
If you don’t want to use pip-autoremove
(since it removes dependencies shared among other packages) and pip3 uninstall jupyter
just removed some packages, then do the following:
Copy-Paste:
sudo
may be needed as per your need.
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient
Note:
The above command will only uninstall jupyter
specific packages. I have not added other packages to uninstall since they might be shared among other packages (eg: Jinja2
is used by Flask
, ipython
is a separate set of packages themselves, tornado
again might be used by others).
In any case, all the dependencies are mentioned below(as of 21 Nov, 2020. jupyter==4.4.0
)
If you are sure you want to remove all the dependencies, then you can use Stan_MD’s answer.
argon2-cffi
argon2-cffi-bindings
async-generator
attrs
backcall
bleach
cffi
dataclasses
decorator
defusedxml
entrypoints
importlib-metadata
ipykernel
ipython
ipython-genutils
ipywidgets
jedi
Jinja2
jsonschema
jupyter
jupyter-client
jupyter-console
jupyter-core
jupyterlab-pygments
jupyterlab-widgets
MarkupSafe
mistune
nbclient
nbconvert
nbformat
nest-asyncio
notebook
packaging
pandocfilters
parso
pexpect
pickleshare
prometheus-client
prompt-toolkit
ptyprocess
pycparser
Pygments
pyparsing
pyrsistent
python-dateutil
pyzmq
qtconsole
QtPy
Send2Trash
six
terminado
testpath
tornado
traitlets
typing-extensions
wcwidth
webencodings
widgetsnbextension
zipp
Executive Edit:
pip3 uninstall jupyter
pip3 uninstall jupyter_core
pip3 uninstall jupyter-client
pip3 uninstall jupyter-console
pip3 uninstall jupyterlab_pygments
pip3 uninstall notebook
pip3 uninstall qtconsole
pip3 uninstall nbconvert
pip3 uninstall nbformat
Explanation of each:
-
Uninstall
jupyter
dist-packages:pip3 uninstall jupyter
-
Uninstall
jupyter_core
dist-packages (It also uninstalls following binaries:jupyter
,jupyter-migrate
,jupyter-troubleshoot
):pip3 uninstall jupyter_core
-
Uninstall
jupyter-client
:pip3 uninstall jupyter-client
-
Uninstall
jupyter-console
:pip3 uninstall jupyter-console
-
Uninstall
jupyter-notebook
(It also uninstalls following binaries:jupyter-bundlerextension
,jupyter-nbextension
,jupyter-notebook
,jupyter-serverextension
):pip3 uninstall notebook
-
Uninstall
jupyter-qtconsole
:pip3 uninstall qtconsole
-
Uninstall
jupyter-nbconvert
:pip3 uninstall nbconvert
-
Uninstall
jupyter-trust
:pip3 uninstall nbformat
If you don’t want to use pip-autoremove
(since it removes dependencies shared among other packages) and pip3 uninstall jupyter
just removed some packages, then do the following:
Copy-Paste:
sudo
may be needed as per your need.
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient
Note:
The above command will only uninstall jupyter
specific packages. I have not added other packages to uninstall since they might be shared among other packages (eg: Jinja2
is used by Flask
, ipython
is a separate set of packages themselves, tornado
again might be used by others).
In any case, all the dependencies are mentioned below(as of 21 Nov, 2020. jupyter==4.4.0
)
If you are sure you want to remove all the dependencies, then you can use Stan_MD’s answer.
argon2-cffi
argon2-cffi-bindings
async-generator
attrs
backcall
bleach
cffi
dataclasses
decorator
defusedxml
entrypoints
importlib-metadata
ipykernel
ipython
ipython-genutils
ipywidgets
jedi
Jinja2
jsonschema
jupyter
jupyter-client
jupyter-console
jupyter-core
jupyterlab-pygments
jupyterlab-widgets
MarkupSafe
mistune
nbclient
nbconvert
nbformat
nest-asyncio
notebook
packaging
pandocfilters
parso
pexpect
pickleshare
prometheus-client
prompt-toolkit
ptyprocess
pycparser
Pygments
pyparsing
pyrsistent
python-dateutil
pyzmq
qtconsole
QtPy
Send2Trash
six
terminado
testpath
tornado
traitlets
typing-extensions
wcwidth
webencodings
widgetsnbextension
zipp
Executive Edit:
pip3 uninstall jupyter
pip3 uninstall jupyter_core
pip3 uninstall jupyter-client
pip3 uninstall jupyter-console
pip3 uninstall jupyterlab_pygments
pip3 uninstall notebook
pip3 uninstall qtconsole
pip3 uninstall nbconvert
pip3 uninstall nbformat
Explanation of each:
-
Uninstall
jupyter
dist-packages:pip3 uninstall jupyter
-
Uninstall
jupyter_core
dist-packages (It also uninstalls following binaries:jupyter
,jupyter-migrate
,jupyter-troubleshoot
):pip3 uninstall jupyter_core
-
Uninstall
jupyter-client
:pip3 uninstall jupyter-client
-
Uninstall
jupyter-console
:pip3 uninstall jupyter-console
-
Uninstall
jupyter-notebook
(It also uninstalls following binaries:jupyter-bundlerextension
,jupyter-nbextension
,jupyter-notebook
,jupyter-serverextension
):pip3 uninstall notebook
-
Uninstall
jupyter-qtconsole
:pip3 uninstall qtconsole
-
Uninstall
jupyter-nbconvert
:pip3 uninstall nbconvert
-
Uninstall
jupyter-trust
:pip3 uninstall nbformat
If you don’t want to use pip-autoremove
(since it removes dependencies shared among other packages) and pip3 uninstall jupyter
just removed some packages, then do the following:
Copy-Paste:
sudo
may be needed as per your need.
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat jupyterlab-widgets nbclient
Note:
The above command will only uninstall jupyter
specific packages. I have not added other packages to uninstall since they might be shared among other packages (eg: Jinja2
is used by Flask
, ipython
is a separate set of packages themselves, tornado
again might be used by others).
In any case, all the dependencies are mentioned below(as of 21 Nov, 2020. jupyter==4.4.0
)
If you are sure you want to remove all the dependencies, then you can use Stan_MD’s answer.
argon2-cffi
argon2-cffi-bindings
async-generator
attrs
backcall
bleach
cffi
dataclasses
decorator
defusedxml
entrypoints
importlib-metadata
ipykernel
ipython
ipython-genutils
ipywidgets
jedi
Jinja2
jsonschema
jupyter
jupyter-client
jupyter-console
jupyter-core
jupyterlab-pygments
jupyterlab-widgets
MarkupSafe
mistune
nbclient
nbconvert
nbformat
nest-asyncio
notebook
packaging
pandocfilters
parso
pexpect
pickleshare
prometheus-client
prompt-toolkit
ptyprocess
pycparser
Pygments
pyparsing
pyrsistent
python-dateutil
pyzmq
qtconsole
QtPy
Send2Trash
six
terminado
testpath
tornado
traitlets
typing-extensions
wcwidth
webencodings
widgetsnbextension
zipp
Executive Edit:
pip3 uninstall jupyter
pip3 uninstall jupyter_core
pip3 uninstall jupyter-client
pip3 uninstall jupyter-console
pip3 uninstall jupyterlab_pygments
pip3 uninstall notebook
pip3 uninstall qtconsole
pip3 uninstall nbconvert
pip3 uninstall nbformat
Explanation of each:
-
Uninstall
jupyter
dist-packages:pip3 uninstall jupyter
-
Uninstall
jupyter_core
dist-packages (It also uninstalls following binaries:jupyter
,jupyter-migrate
,jupyter-troubleshoot
):pip3 uninstall jupyter_core
-
Uninstall
jupyter-client
:pip3 uninstall jupyter-client
-
Uninstall
jupyter-console
:pip3 uninstall jupyter-console
-
Uninstall
jupyter-notebook
(It also uninstalls following binaries:jupyter-bundlerextension
,jupyter-nbextension
,jupyter-notebook
,jupyter-serverextension
):pip3 uninstall notebook
-
Uninstall
jupyter-qtconsole
:pip3 uninstall qtconsole
-
Uninstall
jupyter-nbconvert
:pip3 uninstall nbconvert
-
Uninstall
jupyter-trust
:pip3 uninstall nbformat
6 ответов
Когда вы $ pip install jupyter
устанавливаете несколько зависимостей. Лучший способ полностью удалить его — запустить:
-
$ pip install pip-autoremove
-
$ pip-autoremove jupyter -y
Пожалуйста, обратитесь к этому связанному вопросу .
pip-autoremove
удаляет пакет и его неиспользуемые зависимости. Вот docs.
Stan_MD
17 июль 2016, в 00:18
Поделиться
Если метод pip-autoremove
не удаляет все и pip3 uninstall jupyter
только что удалил некоторые пакеты, сделайте следующее:
Копировать вставить:
sudo
может быть необходимо в соответствии с вашими потребностями.
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console notebook qtconsole nbconvert nbformat
—
Исполнительный Редактировать:
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
:pip3 uninstall jupyter
-
Удалите
jupyter_core
(также удаляются следующие двоичные файлы: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
Rahul Bharadwaj
21 окт. 2018, в 05:34
Поделиться
Попробуйте pip uninstall jupyter_core
. Подробности ниже:
Я столкнулся с подобной проблемой, когда в моем ноутбуке Jupyter был только ноутбук с Python 2. (нет записной книжки Python 3)
Я попытался удалить jupyter с помощью pip unistall jupyter
, pi3 uninstall jupyter
и предложенного pip-autoremove jupyter -y
.
Ничего не сработало. Я запустил 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 __name__ == '__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
и все вернулось на круги своя.
Ankit S
09 авг. 2018, в 17:30
Поделиться
Если вы используете ноутбук Jupyter, вы можете удалить его следующим образом:
pip uninstall notebook
Вы должны использовать деинсталляцию conda, если вы установили ее с помощью conda.
Dharma
13 сен. 2018, в 15:51
Поделиться
Если вы установили ноутбук Jupiter через Anaconda, это может помочь вам:
conda uninstall jupyter notebook
NoahCao
22 июнь 2017, в 16:52
Поделиться
Для Python 3.7:
- В командной строке Windows введите: «py -m pip install pip-autoremove». Вы получите успешное сообщение.
-
Измените каталог, если вы не добавили следующее в качестве своего PATH: cd C:Users {имя_пользователя}AppDataLocalProgramsPythonPython37-32Scripts Чтобы узнать, где был установлен/установлен ваш пакет/приложение, введите: «где имя_программы» как> где jupyter Если вы не нашли местоположение, вам нужно добавить местоположение в PATH.
-
Тип: pip-autoremove jupyter. Будет предложено ввести y/n, чтобы подтвердить действие.
Hossain Mahmood Tuhin
02 сен. 2018, в 14:16
Поделиться
Ещё вопросы
- 1Объедините 2 изображения с маской
- 0Как воссоздать загрузку чего-то вроде обложки Facebook Timeline?
- 1Создание сгенерированной последовательности событий в виде холодной последовательности
- 1как вкладывать value_counts в панд
- 0структура с шаблоном объекта внутри шаблонного класса
- 1Переопределение унаследованного Datacontext
- 1Как избежать дублирования кода между двумя одинаковыми классами, расширяющими разные
- 1Ткинтер — прыгающий значок скрипта
- 0Ошибка отправки формы Javascript
- 1Android — как настроить хранилище ключей
- 0переполнение: скрытое не работает в Chrome
- 1Tensorflow: обучающие модели с графиками, которые не помещаются в память одного графического процессора
- 0Функция emacs для переключения между заголовком и реализацией для нестандартной структуры проекта
- 0JQuery Показать скрыть Div на мышь над [закрыт]
- 1Написание функции, которая анализирует вложенный файл JSON в Python
- 0Угловая директива аккордеонного интерфейса не найдена
- 1DataFrame python При преобразовании Int в Str .0 добавляется в конце
- 1Как обрабатывать исключения во время выполнения при воспроизведении аудио файлов?
- 1Диалог JFaces изменения размера до нуля строк
- 1Применить сортировку в элементе управления ListView
- 1Как отписаться от сервиса WCF
- 1Как фильтровать строки в Pandas на основе определенного значения в 1 столбце
- 0путь к значению массива глубокий многомерный массив
- 0Производительность приложения на Raspberry Pi против многоядерного сервера Xeon
- 1Не могу заставить gRPC работать с Electron.js
- 0Запускать скрипт из диалоговой кнопки jQuery?
- 0Как отфильтровать данные в полях после вызова запроса mysqli.
- 0Почему кнопка отправки не работает?
- 0Как я могу отменить и определить значение препроцессора во время выполнения
- 1узел js Array.push () не работает с помощью mongoose
- 0Javascript (Jquery lib 1.9.1) Mutli-файл AJAX при удалении файлов не удается удалить файлы
- 1Как улучшить часть подзаговоров с помощью цикла for?
- 1RNN с состоянием имеет неправильную тензорную форму в функциональной модели Keras
- 0мультитекстурирование opengl для начинающих
- 0Как я могу обновить таблицу с несколькими выпадающими в PHP?
- 0Страницы PHP не отображаются в AWS Elastic Beanstalk
- 1Как я могу получить информацию, если определенный файл cookie (путем поиска его значения) существует или отсутствует в JS?
- 0Jquery: как связать onready для div, созданных после загрузки страницы
- 0Вызывайте функцию каждые 10 секунд, находясь в цикле
- 1Как установить табличный порядок для текстовых полей Datatemplate в элементе списка?
- 1Разница между классами в Java и JavaScript?
- 0Как сделать вход и выход из системы, следуя yii framework
- 1Экспресс отправка активов с неправильным типом MIME
- 1Mozilla WebExtensions contextMenus.create не работает
- 1Я пытаюсь сравнить строку, но когда пользователь вводит строку, он не позволяет им
- 1Как пройти и проверить линии 4 ячеек в игре connect 4 gridworld?
- 0Возьми контроллер угловой директивы
- 0получать данные о вызове той же HTML страницы
- 0Как связать библиотеку для функции TextOut ()? [Дубликат]
- 1Как изменить метку узла в neo4j?
If you don’t want to use pip-autoremove
(since it removes dependencies shared among other packages) and pip3 uninstall jupyter
just removed some packages, then do the following:
Copy-Paste:
sudo
may be needed as per your need.
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat
Note:
The above command will only uninstall jupyter
specific packages. I have not added other packages to uninstall since they might be shared among other packages (eg: Jinja2
is used by Flask
, ipython
is a separate set of packages themselves, tornado
again might be used by others).
In any case, all the dependencies are mentioned below(as of 21 Nov, 2020. jupyter==4.4.0
)
If you are sure you want to remove all the dependencies, then you can use Stan_MD’s answer.
attrs
backcall
bleach
decorator
defusedxml
entrypoints
importlib-metadata
ipykernel
ipython
ipython-genutils
ipywidgets
jedi
Jinja2
jsonschema
jupyter
jupyter-client
jupyter-console
jupyter-core
jupyterlab-pygments
MarkupSafe
mistune
more-itertools
nbconvert
nbformat
notebook
pandocfilters
parso
pexpect
pickleshare
prometheus-client
prompt-toolkit
ptyprocess
Pygments
pyrsistent
python-dateutil
pyzmq
qtconsole
Send2Trash
six
terminado
testpath
tornado
traitlets
wcwidth
webencodings
widgetsnbextension
zipp
Executive Edit:
pip3 uninstall jupyter
pip3 uninstall jupyter_core
pip3 uninstall jupyter-client
pip3 uninstall jupyter-console
pip3 uninstall jupyterlab_pygments
pip3 uninstall notebook
pip3 uninstall qtconsole
pip3 uninstall nbconvert
pip3 uninstall nbformat
Explanation of each:
-
Uninstall
jupyter
dist-packages:pip3 uninstall jupyter
-
Uninstall
jupyter_core
dist-packages (It also uninstalls following binaries:jupyter
,jupyter-migrate
,jupyter-troubleshoot
):pip3 uninstall jupyter_core
-
Uninstall
jupyter-client
:pip3 uninstall jupyter-client
-
Uninstall
jupyter-console
:pip3 uninstall jupyter-console
-
Uninstall
jupyter-notebook
(It also uninstalls following binaries:jupyter-bundlerextension
,jupyter-nbextension
,jupyter-notebook
,jupyter-serverextension
):pip3 uninstall notebook
-
Uninstall
jupyter-qtconsole
:pip3 uninstall qtconsole
-
Uninstall
jupyter-nbconvert
:pip3 uninstall nbconvert
-
Uninstall
jupyter-trust
:pip3 uninstall nbformat
~ Answered on 2018-10-21 05:02:04
(py36) C:Userszhong>pip install pip-autoremove
Requirement already satisfied: pip-autoremove in d:anaconda3envspy36libsite-packages (0.10.0)
Requirement already satisfied: setuptools in d:anaconda3envspy36libsite-packages (from pip-autoremove) (50.3.0.post20201006)
Requirement already satisfied: pip in d:anaconda3envspy36libsite-packages (from pip-autoremove) (20.2.4)
(py36) C:Userszhong>pip-autoremove jupyter -y
Traceback (most recent call last):
File "d:anaconda3envspy36librunpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "d:anaconda3envspy36librunpy.py", line 85, in _run_code
exec(code, run_globals)
File "D:anaconda3envspy36Scriptspip-autoremove.exe__main__.py", line 4, in <module>
ModuleNotFoundError: No module named 'pip_autoremove'
Мои записные книжки jupyter больше не могут сохранять файлы, поэтому мне нужно полностью удалить все файлы python, jupyter и anaconda, чтобы у меня их никогда не было, но я не могу понять, как это сделать. Удаление anaconda из панели управления не приводит к удалению jupyter. Удалить его из навигатора anaconda тоже не получается.
2 ответа
Лучший ответ
Полностью удалите jupyter:
pip install pip-autoremove
pip-autoremove jupyter -y
pip-autoremove jupyter-core -y
После этого бега
pip freeze | grep jupyter
И удалите все пакеты с помощью команды pip uninstall {package-name}.
Если pip не работает, попробуйте pip3.
Полностью удалите анаконду:
conda install anaconda-clean
anaconda-clean --yes
Затем удалите через панель управления.
0
Edmund
20 Дек 2020 в 06:14
Оказалось, что я удалял успешно, но проблема заключалась не в Anaconda. Защита «Управляемых папок» в Защитнике Windows была включена.
0
maxbear123
20 Дек 2020 в 06:19
Answer by Lucy Moody
When you $ pip install jupyter several dependencies are installed. The best way to uninstall it completely is by running:,Reinstalled jupyter with pip3 install jupyter and everything was back to normal.,Uninstall jupyter-client:
pip3 uninstall jupyter-client
,Now we can remove all of the dependencies of jupyter by this txt file.
sudo
may be needed as per your need.
python3 -m pip uninstall -y jupyter jupyter_core jupyter-client jupyter-console jupyterlab_pygments notebook qtconsole nbconvert nbformat
If you are sure you want to remove all the dependencies, then you can use Stan_MD’s answer.
attrs
backcall
bleach
decorator
defusedxml
entrypoints
importlib-metadata
ipykernel
ipython
ipython-genutils
ipywidgets
jedi
Jinja2
jsonschema
jupyter
jupyter-client
jupyter-console
jupyter-core
jupyterlab-pygments
MarkupSafe
mistune
more-itertools
nbconvert
nbformat
notebook
pandocfilters
parso
pexpect
pickleshare
prometheus-client
prompt-toolkit
ptyprocess
Pygments
pyrsistent
python-dateutil
pyzmq
qtconsole
Send2Trash
six
terminado
testpath
tornado
traitlets
wcwidth
webencodings
widgetsnbextension
zipp
Executive Edit:
pip3 uninstall jupyter
pip3 uninstall jupyter_core
pip3 uninstall jupyter-client
pip3 uninstall jupyter-console
pip3 uninstall jupyterlab_pygments
pip3 uninstall notebook
pip3 uninstall qtconsole
pip3 uninstall nbconvert
pip3 uninstall nbformat
Answer by Mira Dougherty
- Install jupyter
pip install jupyter
- Launch jupyter
jupyter notebook
- Uninstall jupyter
pip install pip-autoremove
pip-autoremove jupyter -y
Answer by Mira Dougherty
Kindly refer to this related question.,When you $ pip install jupyter several dependencies are installed. The best way to uninstall it completely is by running:,Reinstalled jupyter with pip3 install jupyter and everything was back to normal.,Uninstall jupyter-client:
pip3 uninstall jupyter-client
I have tried the following commands
pip uninstall jupyter
pip3 uninstall jupyter
and
rm -rf /Users/$user/Library/Jupyter/*
Even after running all these commands when I type jupyter in the terminal I get the following message
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
Answer by Bailee Greer
I have been trying to uninstall jupyter,
python — How to uninstall pychar and rubymine?
,
Python Anaconda — how to safely uninstall
,
python — How to uninstall winpython?
I have tried the following commands
pip uninstall jupyter
pip3 uninstall jupyter
and
rm -rf /Users/$user/Library/Jupyter/*
Even after running all these commands when I type jupyter in the terminal I get the following message
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
Answer by Dream Gillespie
The directory ‘/home//.cache/pip/http’ or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo’s -H flag.,When unistalling notebook I’ve seen this:,Connect and share knowledge within a single location that is structured and easy to search.,Asking for help, clarification, or responding to other answers.
I have uninstalled the jupyter using the following lines of code so try it.
$ sudo -H python3 -m pip uninstall jupyter_core jupyter_qtconsole nbformat nbconvert notebook
Uninstalling jupyter-core-4.4.0:
Would remove:
/usr/bin/jupyter
/usr/bin/jupyter-migrate
/usr/bin/jupyter-troubleshoot
/usr/lib/python3/dist-packages/jupyter.py
/usr/lib/python3/dist-packages/jupyter_core
/usr/lib/python3/dist-packages/jupyter_core-4.4.0.egg-info
Uninstalling nbformat-4.4.0:
Would remove:
/home/varun/.local/bin/jupyter-trust
/home/varun/.local/lib/python3.6/site-packages/nbformat-4.4.0.dist-info/*
/home/varun/.local/lib/python3.6/site-packages/nbformat/*
Proceed (y/n)? y
Successfully uninstalled nbformat-4.4.0
Uninstalling nbconvert-5.3.1:
Would remove:
/home/varun/.local/bin/jupyter-nbconvert
/home/varun/.local/lib/python3.6/site-packages/nbconvert-5.3.1.dist-info/*
/home/varun/.local/lib/python3.6/site-packages/nbconvert/*
Proceed (y/n)? y
Successfully uninstalled nbconvert-5.3.1
Uninstalling notebook-5.6.0:
Would remove:
/home/varun/.local/bin/jupyter-bundlerextension
/home/varun/.local/bin/jupyter-nbextension
/home/varun/.local/bin/jupyter-notebook
/home/varun/.local/bin/jupyter-serverextension
/home/varun/.local/lib/python3.6/site-packages/notebook-5.6.0.dist-info/*
/home/varun/.local/lib/python3.6/site-packages/notebook/*
Proceed (y/n)? y
Successfully uninstalled notebook-5.6.0
Answer by Aspyn Sims
Thanks to this Stackoverflow comment: https://stackoverflow.com/a/52912244,
You are commenting using your Twitter account.
( Log Out /
Change )
Thanks to this Stackoverflow comment: https://stackoverflow.com/a/52912244
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
Answer by Louie Holt
A project administrator can
uninstall Jupyter Notebooks with Python 3.7 with GPU from IBM® Cloud Pak for Data.,Before you uninstall Jupyter Notebooks with Python 3.7 with GPU, ensure that the
machine from which you will run the commands meets the following requirements:,Rerun the previous command without the
—dry-run flag to remove Jupyter Notebooks with Python 3.7 with GPU.,Required role: To complete this task, you must be an
administrator of the project (namespace) where Jupyter Notebooks with Python 3.7 with GPU is installed.
Tip:
./cpd-cli uninstall --help
Answer by Allyson Hamilton
jupyter kernelspec uninstall unwanted-kernel