How to uninstall or remove python software package from Ubuntu 14.04 LTS (Trusty Tahr)

How to uninstall or remove python software package from Ubuntu 14.04 LTS (Trusty Tahr)

You can uninstall or removes an installed python package itself from Ubuntu 14.04 LTS (Trusty Tahr) through the terminal,

$ sudo apt-get remove python 

Uninstall python including dependent package

If you would like to remove python and it's dependent packages which are no longer needed from Ubuntu,

$ sudo apt-get remove --auto-remove python 
Use Purging python

If you use with purge options to python package all the configuration and dependent packages will be removed.

$ sudo apt-get purge python 

If you use purge options along with auto remove, will be removed everything regarding the package, It's really useful when you want to reinstall again.

$ sudo apt-get purge --auto-remove python 

See Also,

How to install python software package from Ubuntu 14.04 LTS (Trusty Tahr)?