如何从ubantu系统中卸载swig2.0?
To remove the swig2.0 following command is used:
sudo apt-get remove swig2.0
Following command is used to remove the swig2.0 package along with its dependencies:
sudo apt-get remove --auto-remove swig2.0
This will remove swig2.0 and all its dependent packages which is no longer needed in the system.
Completely removing swig2.0 with all configuration files:
Following command should be used with care as it deletes all the configuration files and data:
sudo apt-get purge swig2.0
or you can use following command also:
sudo apt-get purge --auto-remove swig2.0