Uninstall gcc-5.4.0 to run gcc-4.8 as default












1















I am using Ubuntu 14.04. Recently I decided to install gcc-5.4.0 (from source, i.e. i downloaded a tar ball and followed instructions to install) since it was needed to run CAMB and CosmoMC.



However, I am in need of using a new program: CosmoSIS (https://bitbucket.org/joezuntz/cosmosis/wiki/Manual%20Install), this code requires gcc-4.8 to run.



Whenever i try to install CosmoSIS, the code crashes because when it is searching for gcc-4.8 in /usr/local/bin it conflicts with gcc-5.4 which is installed in the same directory (i am new to this, i'm guessing i made a mistake by installing 5.4 in the same directory in which 4.8 is installed)



I'm looking for help on uninstalling gcc-5.4 since my priority is running CosmoSIS and gcc-4.8 is needed. I know there is no "uninstall" command for source-installed programs, but i need help on this: How can i uninstall a source-installed program?



Thank you in advance










share|improve this question



























    1















    I am using Ubuntu 14.04. Recently I decided to install gcc-5.4.0 (from source, i.e. i downloaded a tar ball and followed instructions to install) since it was needed to run CAMB and CosmoMC.



    However, I am in need of using a new program: CosmoSIS (https://bitbucket.org/joezuntz/cosmosis/wiki/Manual%20Install), this code requires gcc-4.8 to run.



    Whenever i try to install CosmoSIS, the code crashes because when it is searching for gcc-4.8 in /usr/local/bin it conflicts with gcc-5.4 which is installed in the same directory (i am new to this, i'm guessing i made a mistake by installing 5.4 in the same directory in which 4.8 is installed)



    I'm looking for help on uninstalling gcc-5.4 since my priority is running CosmoSIS and gcc-4.8 is needed. I know there is no "uninstall" command for source-installed programs, but i need help on this: How can i uninstall a source-installed program?



    Thank you in advance










    share|improve this question

























      1












      1








      1








      I am using Ubuntu 14.04. Recently I decided to install gcc-5.4.0 (from source, i.e. i downloaded a tar ball and followed instructions to install) since it was needed to run CAMB and CosmoMC.



      However, I am in need of using a new program: CosmoSIS (https://bitbucket.org/joezuntz/cosmosis/wiki/Manual%20Install), this code requires gcc-4.8 to run.



      Whenever i try to install CosmoSIS, the code crashes because when it is searching for gcc-4.8 in /usr/local/bin it conflicts with gcc-5.4 which is installed in the same directory (i am new to this, i'm guessing i made a mistake by installing 5.4 in the same directory in which 4.8 is installed)



      I'm looking for help on uninstalling gcc-5.4 since my priority is running CosmoSIS and gcc-4.8 is needed. I know there is no "uninstall" command for source-installed programs, but i need help on this: How can i uninstall a source-installed program?



      Thank you in advance










      share|improve this question














      I am using Ubuntu 14.04. Recently I decided to install gcc-5.4.0 (from source, i.e. i downloaded a tar ball and followed instructions to install) since it was needed to run CAMB and CosmoMC.



      However, I am in need of using a new program: CosmoSIS (https://bitbucket.org/joezuntz/cosmosis/wiki/Manual%20Install), this code requires gcc-4.8 to run.



      Whenever i try to install CosmoSIS, the code crashes because when it is searching for gcc-4.8 in /usr/local/bin it conflicts with gcc-5.4 which is installed in the same directory (i am new to this, i'm guessing i made a mistake by installing 5.4 in the same directory in which 4.8 is installed)



      I'm looking for help on uninstalling gcc-5.4 since my priority is running CosmoSIS and gcc-4.8 is needed. I know there is no "uninstall" command for source-installed programs, but i need help on this: How can i uninstall a source-installed program?



      Thank you in advance







      uninstall gcc






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 11 '17 at 19:05









      Claudio NahmadClaudio Nahmad

      613




      613






















          2 Answers
          2






          active

          oldest

          votes


















          0














          Just create a symbolic link to gcc-4.8



          cd /usr/bin
          sudo rm gcc
          sudo ln -s gcc-4.8 gcc


          now try



          gcc --version


          And see if you got the desired result






          share|improve this answer


























          • while /usr/bin/gcc is very likely to be a symlink, it would be advisable to check first. Also, OP wants to uninstall gcc-5.4 so it would be nice if your answer addressed that...

            – Zanna
            Aug 3 '17 at 9:35



















          0














          I advise to use update-alternatives command as described in the answer How to choose the default gcc and g++ version?






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f870770%2funinstall-gcc-5-4-0-to-run-gcc-4-8-as-default%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Just create a symbolic link to gcc-4.8



            cd /usr/bin
            sudo rm gcc
            sudo ln -s gcc-4.8 gcc


            now try



            gcc --version


            And see if you got the desired result






            share|improve this answer


























            • while /usr/bin/gcc is very likely to be a symlink, it would be advisable to check first. Also, OP wants to uninstall gcc-5.4 so it would be nice if your answer addressed that...

              – Zanna
              Aug 3 '17 at 9:35
















            0














            Just create a symbolic link to gcc-4.8



            cd /usr/bin
            sudo rm gcc
            sudo ln -s gcc-4.8 gcc


            now try



            gcc --version


            And see if you got the desired result






            share|improve this answer


























            • while /usr/bin/gcc is very likely to be a symlink, it would be advisable to check first. Also, OP wants to uninstall gcc-5.4 so it would be nice if your answer addressed that...

              – Zanna
              Aug 3 '17 at 9:35














            0












            0








            0







            Just create a symbolic link to gcc-4.8



            cd /usr/bin
            sudo rm gcc
            sudo ln -s gcc-4.8 gcc


            now try



            gcc --version


            And see if you got the desired result






            share|improve this answer















            Just create a symbolic link to gcc-4.8



            cd /usr/bin
            sudo rm gcc
            sudo ln -s gcc-4.8 gcc


            now try



            gcc --version


            And see if you got the desired result







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Aug 3 '17 at 9:31









            Zanna

            50.7k13136241




            50.7k13136241










            answered Jan 11 '17 at 19:32









            amanuskamanusk

            9062718




            9062718













            • while /usr/bin/gcc is very likely to be a symlink, it would be advisable to check first. Also, OP wants to uninstall gcc-5.4 so it would be nice if your answer addressed that...

              – Zanna
              Aug 3 '17 at 9:35



















            • while /usr/bin/gcc is very likely to be a symlink, it would be advisable to check first. Also, OP wants to uninstall gcc-5.4 so it would be nice if your answer addressed that...

              – Zanna
              Aug 3 '17 at 9:35

















            while /usr/bin/gcc is very likely to be a symlink, it would be advisable to check first. Also, OP wants to uninstall gcc-5.4 so it would be nice if your answer addressed that...

            – Zanna
            Aug 3 '17 at 9:35





            while /usr/bin/gcc is very likely to be a symlink, it would be advisable to check first. Also, OP wants to uninstall gcc-5.4 so it would be nice if your answer addressed that...

            – Zanna
            Aug 3 '17 at 9:35













            0














            I advise to use update-alternatives command as described in the answer How to choose the default gcc and g++ version?






            share|improve this answer




























              0














              I advise to use update-alternatives command as described in the answer How to choose the default gcc and g++ version?






              share|improve this answer


























                0












                0








                0







                I advise to use update-alternatives command as described in the answer How to choose the default gcc and g++ version?






                share|improve this answer













                I advise to use update-alternatives command as described in the answer How to choose the default gcc and g++ version?







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 12 at 15:17









                mboyarmboyar

                164




                164






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f870770%2funinstall-gcc-5-4-0-to-run-gcc-4-8-as-default%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How to change which sound is reproduced for terminal bell?

                    Can I use Tabulator js library in my java Spring + Thymeleaf project?

                    Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents