How do I uninstall code block completely from Ubuntu 14.04(Including plugins)

26,061

To remove a package completely, you can use

sudo apt-get purge <packagename>

Example:

sudo apt-get purge codeblocks

To remove a package plus its dependencies, you can use

sudo apt-get autoremove <packagename>

Example:

sudo apt-get autoremove codeblocks

Read the official documentation first here https://help.ubuntu.com/community/AptGet/Howto.

Share:
26,061
jonyroy
Author by

jonyroy

Don't Quit...............................

Updated on September 18, 2022

Comments

  • jonyroy
    jonyroy almost 2 years

    I install code block with some plugins .but There is a problem with codeblock. so i want to uninstall codeblock completely so that i can install it from begining with new codeblock window.

    • jonyroy
      jonyroy almost 10 years
      but it doesn't install from beginingI install from Ubuntu software center
    • jonyroy
      jonyroy almost 10 years
      But there is no option of remove/uninstall
  • A-Sharabiani
    A-Sharabiani almost 7 years
    Does removing codeblocks and its dependencies break some other applications? I think we just need to use the purge command.