1

i want to install and uninstall GCC using command. How can i do that.

any idea?

Anne
  • 59
  • 2
  • 3
  • 6

1 Answers1

8

Please run the following in command line:

Ubuntu:

sudo apt-get remove --skip-broken gcc

sudo apt-get install --skip-broken gcc

Centos:

sudo yum remove --skip-broken gcc

sudo yum install --skip-broken gcc
C Cislariu
  • 198
  • 1
  • 12