Home  >  Article  >  Backend Development  >  How to uninstall python in linux?

How to uninstall python in linux?

藏色散人
藏色散人Original
2019-05-17 18:55:3418394browse

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?

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn