Skip to content

Instantly share code, notes, and snippets.

View RaOneG's full-sized avatar
🐤

Rawan G RaOneG

🐤
View GitHub Profile
@zhensongren
zhensongren / uninstall_python3.MD
Last active July 24, 2024 17:17
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