Answers for "uninstall python linux"

3

ubuntu remove python 2.7

# Remove python2
sudo apt purge -y python2.7-minimal

# You already have Python3 but 
# don't care about the version 
sudo ln -s /usr/bin/python3 /usr/bin/python

# Same for pip
sudo apt install -y python3-pip
sudo ln -s /usr/bin/pip3 /usr/bin/pip

# Confirm the new version of Python: 3
python --version
Posted by: Guest on June-29-2020
1

linux uninstall python

sudo apt autoremove python3
Posted by: Guest on December-25-2020
30

pip remove

# python2
pip uninstall package_name
# python3
pip3 uninstall package_name
Posted by: Guest on May-02-2020
7

pip remove package

pip uninstall <package_name>
Posted by: Guest on September-16-2020

Python Answers by Framework

Browse Popular Code Answers by Language