Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

remove python ubuntu

sudo apt-get -y purge python3.8
sudo apt-get -y autoremove
Comment

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
Comment

PREVIOUS NEXT
Code Example
Python :: python min in dictionary 
Python :: selenium python find all links 
Python :: conda create environment python 3.6 
Python :: download pip install 
Python :: tensorboard in colab 
Python :: get stats from array python 
Python :: conda create environment 
Python :: selenium press tab python 
Python :: seaborn size 
Python :: change tkinter window name 
Python :: python install pylab 
Python :: local image embed discord py 
Python :: python flask access-control-allow-origin 
Python :: drop unnamed column pandas 
Python :: pycache in gitignore 
Python :: how to get image in jupyter notebook 
Python :: loop through list backwards python 
Python :: python - prime number generator 
Python :: python plot a dictionary 
Python :: convert column to datetime format python 
Python :: get list of unique values in pandas column 
Python :: flask cors 
Python :: timeout exception in selenium python 
Python :: how to run python script as admin 
Python :: database default code in settings django 
Python :: Package python3-pip is not available, but is referred to by another package. 
Python :: what to do in python when you get pygame.Surface object is not callable 
Python :: python requests set user agent 
Python :: matplotlib y axis log scale 
Python :: pandas convert index to column 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =