Skip to content

Instantly share code, notes, and snippets.

@hafizsheetab
hafizsheetab / uninstall_python3.MD
Created June 18, 2023 06:42 — forked from zhensongren/uninstall_python3.MD
How to uninstall python3 from Ubuntu

To list all python versions in default locations

ls /usr/bin/python*

To remove just python3 package

sudo apt-get remove python3.5

plus it's dependent packages

sudo apt-get remove --auto-remove python3.5

plus configuration and/or data files of python3

sudo apt-get purge python3.5