Anne
Anne

Reputation: 59

How we can install and uninstall gcc in linux redhat using command?

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

any idea?

Upvotes: 1

Views: 20920

Answers (1)

C Cislariu
C Cislariu

Reputation: 198

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

Upvotes: 8

Related Questions