Home > Article > Backend Development > How to uninstall python in linux?
Python is a computer programming language. It is an object-oriented dynamic type language that was originally designed for writing automated scripts (shells). With the continuous updates of the version and the addition of new language features, it is increasingly used for the development of independent and large-scale projects.
How to uninstall python in linux?
Uninstallation method:
1. Uninstall python3.4
sudo apt-get remove python3.4
2. Uninstall python3.4 and its dependencies
sudo apt-get remove --auto-remove python3.4
3. Clear python3.4
sudo apt-get purge python3.4
or
sudo apt-get purge --auto-remove python3.4
The above is the detailed content of How to uninstall python in linux?. For more information, please follow other related articles on the PHP Chinese website!