How can I install python3-clang on Linux Mint 18.04?












1















I have a vim plugin called CLighter8 that requires the package python3-clang, but unfortnuately I can't find it in the default repository nor any other repository. So I can't really find a way to install it.

Is there a way to install it manually directly from the source? Without haveing to reinstall all the other python packages I installed through pip3?










share|improve this question



























    1















    I have a vim plugin called CLighter8 that requires the package python3-clang, but unfortnuately I can't find it in the default repository nor any other repository. So I can't really find a way to install it.

    Is there a way to install it manually directly from the source? Without haveing to reinstall all the other python packages I installed through pip3?










    share|improve this question

























      1












      1








      1








      I have a vim plugin called CLighter8 that requires the package python3-clang, but unfortnuately I can't find it in the default repository nor any other repository. So I can't really find a way to install it.

      Is there a way to install it manually directly from the source? Without haveing to reinstall all the other python packages I installed through pip3?










      share|improve this question














      I have a vim plugin called CLighter8 that requires the package python3-clang, but unfortnuately I can't find it in the default repository nor any other repository. So I can't really find a way to install it.

      Is there a way to install it manually directly from the source? Without haveing to reinstall all the other python packages I installed through pip3?







      vim python aptitude clang






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 19 '18 at 12:14









      user2741831user2741831

      1124




      1124






















          1 Answer
          1






          active

          oldest

          votes


















          0














          Linux Mint 18.04 doesn't exist. Did you mean a version of Linux Mint which is based on Ubuntu 18.04?



          I think what you want to install is this. If so, you have to install clang first. You should get clang from the official clang repos found here. You can run these commands to install clang 6.0 on Ubuntu 18.04 (or Linux Mint 19):



          $ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
          $ sudo apt-add-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main" #replace this with "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" for clang 7.0
          $ sudo apt-get update
          $ sudo apt-get install clang-6.0



          For more info see the above link to the LLVM project page.



          Once you have installed clang, you can install the clang python package - pip3 install clang.



          Also it looks like you should install libclang-dev after more carefully reading the project README.



          Hope this helped!






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            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%2fsuperuser.com%2fquestions%2f1385902%2fhow-can-i-install-python3-clang-on-linux-mint-18-04%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Linux Mint 18.04 doesn't exist. Did you mean a version of Linux Mint which is based on Ubuntu 18.04?



            I think what you want to install is this. If so, you have to install clang first. You should get clang from the official clang repos found here. You can run these commands to install clang 6.0 on Ubuntu 18.04 (or Linux Mint 19):



            $ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
            $ sudo apt-add-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main" #replace this with "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" for clang 7.0
            $ sudo apt-get update
            $ sudo apt-get install clang-6.0



            For more info see the above link to the LLVM project page.



            Once you have installed clang, you can install the clang python package - pip3 install clang.



            Also it looks like you should install libclang-dev after more carefully reading the project README.



            Hope this helped!






            share|improve this answer




























              0














              Linux Mint 18.04 doesn't exist. Did you mean a version of Linux Mint which is based on Ubuntu 18.04?



              I think what you want to install is this. If so, you have to install clang first. You should get clang from the official clang repos found here. You can run these commands to install clang 6.0 on Ubuntu 18.04 (or Linux Mint 19):



              $ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
              $ sudo apt-add-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main" #replace this with "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" for clang 7.0
              $ sudo apt-get update
              $ sudo apt-get install clang-6.0



              For more info see the above link to the LLVM project page.



              Once you have installed clang, you can install the clang python package - pip3 install clang.



              Also it looks like you should install libclang-dev after more carefully reading the project README.



              Hope this helped!






              share|improve this answer


























                0












                0








                0







                Linux Mint 18.04 doesn't exist. Did you mean a version of Linux Mint which is based on Ubuntu 18.04?



                I think what you want to install is this. If so, you have to install clang first. You should get clang from the official clang repos found here. You can run these commands to install clang 6.0 on Ubuntu 18.04 (or Linux Mint 19):



                $ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
                $ sudo apt-add-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main" #replace this with "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" for clang 7.0
                $ sudo apt-get update
                $ sudo apt-get install clang-6.0



                For more info see the above link to the LLVM project page.



                Once you have installed clang, you can install the clang python package - pip3 install clang.



                Also it looks like you should install libclang-dev after more carefully reading the project README.



                Hope this helped!






                share|improve this answer













                Linux Mint 18.04 doesn't exist. Did you mean a version of Linux Mint which is based on Ubuntu 18.04?



                I think what you want to install is this. If so, you have to install clang first. You should get clang from the official clang repos found here. You can run these commands to install clang 6.0 on Ubuntu 18.04 (or Linux Mint 19):



                $ wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key|sudo apt-key add -
                $ sudo apt-add-repository "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-6.0 main" #replace this with "deb http://apt.llvm.org/bionic/ llvm-toolchain-bionic-7 main" for clang 7.0
                $ sudo apt-get update
                $ sudo apt-get install clang-6.0



                For more info see the above link to the LLVM project page.



                Once you have installed clang, you can install the clang python package - pip3 install clang.



                Also it looks like you should install libclang-dev after more carefully reading the project README.



                Hope this helped!







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 28 '18 at 0:56









                an actual toasteran actual toaster

                161




                161






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Super User!


                    • 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%2fsuperuser.com%2fquestions%2f1385902%2fhow-can-i-install-python3-clang-on-linux-mint-18-04%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

                    If I really need a card on my start hand, how many mulligans make sense? [duplicate]

                    Alcedinidae

                    Can an atomic nucleus contain both particles and antiparticles? [duplicate]