Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

linux uninstall python

sudo apt autoremove python3
Comment

uninstall python linux

# 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
Comment

how to uninstall python

1. Navigate to Control Panel.
2. Click “Uninstall a program”, and a list of all the currently installed programs will display.
3. Select the Python version that you want to uninstall, then click the “Uninstall” button above the list – this has to be done for every Python version installed on the system.
Comment

PREVIOUS NEXT
Code Example
Python :: how to order randomly in django orm 
Python :: convert int to byte python 
Python :: linux python install 
Python :: How to extract numbers from a string in Python? 
Python :: creating an interface tkinter 
Python :: pandas select percentile 
Python :: python timeit commandline example 
Python :: change py version in colab 
Python :: function as parameter tpye hinting python 
Python :: get ip from request django 
Python :: discard vs remove python 
Python :: python wait 5 seconds then display 
Python :: how to read zip csv file in python 
Python :: how to open cmd at specific location usng python 
Python :: python parser txt to excel 
Python :: meme command discord.py 
Python :: python bisection method 
Python :: sum of a column in pandas 
Python :: python show image opencv 
Python :: python return right operand if left is falsy 
Python :: how to run pytest and enter console on failure 
Python :: Check for duplicate values in dataframe 
Python :: how to make an encryption program in python 
Python :: matplotlib change bar color under threshold 
Python :: ellipsis in python as index 
Python :: init image with zeros python 
Python :: string to list in python comma 
Python :: enumurate in python 
Python :: python logger format time 
Python :: image bad when scaled in pygame 
ADD CONTENT
Topic
Content
Source link
Name
9+2 =