Remove installed ROS package
I installed a ros package wih this command:
$ sudo apt-get install ros-kinetic-novatel-gps-driver
Now I would like to remove this package and build it from its github page. What is the safest and cleanest way to do so?
I am aware of:
$ sudo apt remove ros-kinetic-novatel-gps-driver
or
$ sudo apt-get purge ros-kinetic-novatel-gps-driver
cheers,
This is not ROS-specific.
apt
(andapt-get
) are tools provided by Debian (and Debian based Linux distributions such as Ubuntu).remove
andpurge
are exactly the two options you have to remove the Debian package.