uninstallation

How to uninstall Anaconda completely from macOS

How to uninstall Anaconda completely from macOS Question: How can I completely uninstall Anaconda from MacOS Sierra and revert back to the original Python? I have tried using conda-clean -yes but that doesn’t work. I also remove the stuff in ~/.bash_profile but it still uses the Anaconda python and I can still run the conda …

Total answers: 14

pip: Uninstalling package from specific directory

pip: Uninstalling package from specific directory Question: I installed package into specific local directory using pip install -t <dir>. Now I want to uninstall it, but I cannot find a way to uninstall from that specific directory. For uninstall there is no valid option -t | –target, which exists for install command. Asked By: Denis …

Total answers: 1

How to uninstall mini conda? python

How to uninstall mini conda? python Question: I’ve install the conda package as such: $ wget http://bit.ly/miniconda $ bash miniconda $ conda install numpy pandas scipy matplotlib scikit-learn nltk ipython-notebook seaborn I want to uninstall it because it’s messing up my pips and environment. How do I uninstall conda totally? Will it uninstall also my …

Total answers: 5

How do you uninstall the package manager "pip", if installed from source?

How do you uninstall the package manager "pip", if installed from source? Question: I was unaware that pip could be installed via my operating system’s package manager, so I compiled and installed pip via source with the following command: wget https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py -O – | sudo python I would like to uninstall pip, and instead install …

Total answers: 4

Too many different Python versions on my system and causing problems

Too many different Python versions on my system and causing problems Question: During the past years, I have installed many Python libraries with various Python versions. To make them ready to work immediately, I installed them blindly without control. Currently they’re causing problems when I tried to install pynest which invokes numpy, scipy and matplotlib. …

Total answers: 5

Installing/uninstalling my module with pip

Installing/uninstalling my module with pip Question: I am going through the Learn Python the Hard Way, 2nd Edition book, and I am stuck on this problem: “Use your setup.py to install your own module and make sure it works, then use pip to uninstall it.” If I type setup.py install in the command line, I …

Total answers: 1

How to uninstall Python 2.7 on a Mac OS X 10.6.4?

How to uninstall Python 2.7 on a Mac OS X 10.6.4? Question: I want to completely remove Python 2.7 from my Mac OS X 10.6.4. I managed to remove the entry from the PATH variable by reverting my .bash_profile. But I also want to remove all directories, files, symlinks, and entries that got installed by …

Total answers: 17

How to completely remove Python from a Windows machine?

How to completely remove Python from a Windows machine? Question: I installed both Python 2.7 and Python 2.6.5. I don’t know what went wrong, but nothing related to Python seems to work any more. e.g. “setup.py install” for certain packages don’t recognize the “install” parameter and other odd phenomena… I would like to completely remove …

Total answers: 15