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

PREVIOUS NEXT
Code Example
Python :: fork function in python 
Python :: iterate over dictionary django 
Python :: print out a name in python 
Python :: how to auto install geckodriver in selenium python with .install() 
Python :: moving averages python 
Python :: How to loop over grouped Pandas dataframe? 
Python :: pandas new column average of other columns 
Python :: python remove all elemnts in list containing string 
Python :: one line if statement no else 
Python :: run flask in debug mode 
Python :: python django model range validation 
Python :: Display if the column(s) contain duplicates in the DataFrame 
Python :: create virtual environments python 
Python :: pyqt5 button connect 
Python :: create an empty list of lists in python 
Python :: how to find in which directory my python code is running 
Python :: python how to draw triangle 
Python :: get the name of a current script in python 
Python :: python if not null or empty 
Python :: train test split sklearn 
Python :: pandas copy data from a column to another 
Python :: python rgb to hex 
Python :: how to get dictionary input from user in python 
Python :: pandas save dataframe to csv in python 
Python :: how to use fastapi ApiClient with pytest 
Python :: python3 shebang line 
Python :: where is python installed on ubuntu 
Python :: discord python tts 
Python :: python to mac executable 
Python :: remove multiindex pandas 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =