Uninstall Python package using pip3

Cord Kaldemeyer

I am working with Python 3.4 and have installed a package (spyder) using pip3 install. It is works as it should and I can start it from the terminal.

Since I want to switch my IDE, I tried to uninstall it using pip3 uninstall in the same way as the installation. But this gives me a message that no files can be found.

Here's my terminal output:

cord@laptop:~$ sudo pip3 freeze
Coopr==3.5.8748
...
spyder==2.3.4
...
xdiagnose==3.6.3build2
xkit==0.0.0
cord@laptop:~$ sudo pip3 uninstall spyder
Can't uninstall 'spyder'. No files were found to uninstall.

My OS is Ubuntu 14.04 x64.

Any hints?

Meghdeep Ray

Go to /usr/local/bin and find the packages you want to delete

Then just use sudo rm -r spyder or whatever the directory name is. That way the files get manually removed from your system.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

debian9 can't install python packages with pip3 or uninstall packages with apt

From Dev

How to uninstall package using puppet

From Dev

can't uninstall package with pip

From Java

Problems using zsh with Catalina, Python/Python3, pip/pip3, PATH, zshrc, etc

From Dev

Problems using zsh with Catalina, Python/Python3, pip/pip3, PATH, zshrc, etc

From Dev

How can I see which versions (platform/version/abi) of a package are available using pip3?

From Dev

using pip3 with 3.7?

From Dev

Uninstall EntityFramework using the Package Manager Console

From Dev

How to uninstall a bower package using gitbash?

From Dev

is there an uninstall equivalent to "pip install --user <package>"?

From Java

How to uninstall a package installed with pip install --user

From Java

pip cannot uninstall <package>: "It is a distutils installed project"

From Dev

pip cannot uninstall <package>: "It is a distutils installed project"

From Dev

How do I uninstall xgboost python package?

From Dev

How to uninstall Python from pip

From Dev

How to install Numpy & pip3 for python3.x when they were installed in python2.7? Using Conda?

From Dev

Joomla 3: How to uninstall module from a package?

From Dev

Error installing scipy using pip3

From Java

Install a Python package into a different directory using pip?

From Dev

Not able to search python package pmock using pip

From Dev

Install pip3 for Python 3.6.3 only

From Dev

Install python 3.6.7 pip3 offline

From Dev

Python 3.6.2 pip3 install failed

From Dev

pip3 is pointing to the wrong version of python

From Dev

sudo pip uninstall <package-name> sudo: pip: command not found

From Java

pip or pip3 to install packages for Python 3?

From Dev

pip or pip3 to install packages for Python 3?

From Dev

python3-pip installed but pip3 command not found?

From Dev

How to configure a package in PyPI to install only with pip3

Related Related

  1. 1

    debian9 can't install python packages with pip3 or uninstall packages with apt

  2. 2

    How to uninstall package using puppet

  3. 3

    can't uninstall package with pip

  4. 4

    Problems using zsh with Catalina, Python/Python3, pip/pip3, PATH, zshrc, etc

  5. 5

    Problems using zsh with Catalina, Python/Python3, pip/pip3, PATH, zshrc, etc

  6. 6

    How can I see which versions (platform/version/abi) of a package are available using pip3?

  7. 7

    using pip3 with 3.7?

  8. 8

    Uninstall EntityFramework using the Package Manager Console

  9. 9

    How to uninstall a bower package using gitbash?

  10. 10

    is there an uninstall equivalent to "pip install --user <package>"?

  11. 11

    How to uninstall a package installed with pip install --user

  12. 12

    pip cannot uninstall <package>: "It is a distutils installed project"

  13. 13

    pip cannot uninstall <package>: "It is a distutils installed project"

  14. 14

    How do I uninstall xgboost python package?

  15. 15

    How to uninstall Python from pip

  16. 16

    How to install Numpy & pip3 for python3.x when they were installed in python2.7? Using Conda?

  17. 17

    Joomla 3: How to uninstall module from a package?

  18. 18

    Error installing scipy using pip3

  19. 19

    Install a Python package into a different directory using pip?

  20. 20

    Not able to search python package pmock using pip

  21. 21

    Install pip3 for Python 3.6.3 only

  22. 22

    Install python 3.6.7 pip3 offline

  23. 23

    Python 3.6.2 pip3 install failed

  24. 24

    pip3 is pointing to the wrong version of python

  25. 25

    sudo pip uninstall <package-name> sudo: pip: command not found

  26. 26

    pip or pip3 to install packages for Python 3?

  27. 27

    pip or pip3 to install packages for Python 3?

  28. 28

    python3-pip installed but pip3 command not found?

  29. 29

    How to configure a package in PyPI to install only with pip3

HotTag

Archive