Replace python2 with python3 in Debian

Yu-Cheng Hung
May 31, 2022

--

Remove python2

sudo apt purge -y python2.7-minimal

With python3 already

sudo ln -s /usr/bin/python3 /usr/bin/python

pip

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

Confirm currently version of python

python --version

--

--

No responses yet