Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

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

how to uninstall python2.7 from ubuntu 18.04

sudo apt autoremove python
Comment

how to uninstall python2.7 from ubuntu 18.04

whereis python
which python
Comment

PREVIOUS NEXT
Code Example
Python :: block url selenium python 
Python :: login urls 
Python :: python how to geather and spread using pandas 
Python :: ensure string length 2 python 
Python :: is there a gif package for python 
Python :: break line text opencv 
Python :: python how to hash string into pbkdf2 
Python :: python indent selection 
Python :: save changes flask sqlalchemy 
Python :: plot with confidence intervals in ARIMA 
Python :: drop values based on type pandas 
Python :: initial TypedMultipleChoiceField django 
Python :: python declare immutable variable 
Python :: astype oandas 
Python :: Filter Top 5 Python 
Python :: python script copy and paste 
Python :: stdfilt python 
Python :: WAP THAT ASKS A USER FOR A NUMBER OF YEARS AND THEN PRINTS OUT THE NUMBER OF DAYS, HOURS ,MINUTES AND SECONDS IN THAT NO. OF YEARS. 
Python :: check substring frequency in a text python 
Python :: list into string python 
Python :: if number Of Players == =4 python 
Python :: decorator patter 
Python :: funny application in python 
Python :: Python - Cara Memisahkan String Berdasarkan Beberapa Delimiter 
Python :: membuat chat bot dengan python 
Python :: sample one point from distribution python 
Python :: get current worker id multiprocessing 
Python :: specificity formula python 
Python :: django rest framework not getting form 
Python :: Summarizing Data and description data in pandas 
ADD CONTENT
Topic
Content
Source link
Name
6+9 =