Anaconda python and Zsh issue on macOS Sierra

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I have Anaconda installed on my Macbook Pro with macOS Sierra with Zsh as a shell and Oh My Zsh.



GUI is working fine, but I have problem with commands in terminal.



When I want so start jupyter, I get an error zsh: command not found: jupyter










share|improve this question

























    up vote
    0
    down vote

    favorite












    I have Anaconda installed on my Macbook Pro with macOS Sierra with Zsh as a shell and Oh My Zsh.



    GUI is working fine, but I have problem with commands in terminal.



    When I want so start jupyter, I get an error zsh: command not found: jupyter










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I have Anaconda installed on my Macbook Pro with macOS Sierra with Zsh as a shell and Oh My Zsh.



      GUI is working fine, but I have problem with commands in terminal.



      When I want so start jupyter, I get an error zsh: command not found: jupyter










      share|improve this question













      I have Anaconda installed on my Macbook Pro with macOS Sierra with Zsh as a shell and Oh My Zsh.



      GUI is working fine, but I have problem with commands in terminal.



      When I want so start jupyter, I get an error zsh: command not found: jupyter







      terminal osx zsh python






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 3 '16 at 10:34









      Petar Popovic

      369




      369




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote













          This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter, and if yours is the same you should be able to run the following:



          echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc


          And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.






          share|improve this answer



























            up vote
            -1
            down vote













            Just in case someone finds this useful, even thought it's not about Jupyter specifically:



            I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda hasn't been added to my ~/.zshrc and I was getting this error when trying to run it:



            zsh: command not found: conda



            So I added



            # Anaconda
            export PATH=$HOME/anaconda3/bin/:$PATH


            to my .zshrc file, sourced (. ~/.zshrc) and am good to go.






            share|improve this answer








            New contributor




            nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.

















            • This might be useful if it weren’t so similar (almost identical) to the existing answer.
              – Scott
              15 mins ago










            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            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',
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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%2funix.stackexchange.com%2fquestions%2f320761%2fanaconda-python-and-zsh-issue-on-macos-sierra%23new-answer', 'question_page');

            );

            Post as a guest






























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote













            This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter, and if yours is the same you should be able to run the following:



            echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc


            And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.






            share|improve this answer
























              up vote
              1
              down vote













              This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter, and if yours is the same you should be able to run the following:



              echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc


              And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.






              share|improve this answer






















                up vote
                1
                down vote










                up vote
                1
                down vote









                This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter, and if yours is the same you should be able to run the following:



                echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc


                And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.






                share|improve this answer












                This was sort of a while ago now, but I figure all you need to do is add jupyter to your path. The path on my system is /opt/conda/bin/jupyter, and if yours is the same you should be able to run the following:



                echo "export PATH=/opt/conda/bin:$PATH" >> ~/.zshrc


                And your PATH will be updated to include jupyter(and other conda-installed executeables). If your path to conda/bin is different you'll have to update the export accordingly.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jun 15 '17 at 18:14









                Patrick

                111




                111






















                    up vote
                    -1
                    down vote













                    Just in case someone finds this useful, even thought it's not about Jupyter specifically:



                    I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda hasn't been added to my ~/.zshrc and I was getting this error when trying to run it:



                    zsh: command not found: conda



                    So I added



                    # Anaconda
                    export PATH=$HOME/anaconda3/bin/:$PATH


                    to my .zshrc file, sourced (. ~/.zshrc) and am good to go.






                    share|improve this answer








                    New contributor




                    nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.

















                    • This might be useful if it weren’t so similar (almost identical) to the existing answer.
                      – Scott
                      15 mins ago














                    up vote
                    -1
                    down vote













                    Just in case someone finds this useful, even thought it's not about Jupyter specifically:



                    I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda hasn't been added to my ~/.zshrc and I was getting this error when trying to run it:



                    zsh: command not found: conda



                    So I added



                    # Anaconda
                    export PATH=$HOME/anaconda3/bin/:$PATH


                    to my .zshrc file, sourced (. ~/.zshrc) and am good to go.






                    share|improve this answer








                    New contributor




                    nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.

















                    • This might be useful if it weren’t so similar (almost identical) to the existing answer.
                      – Scott
                      15 mins ago












                    up vote
                    -1
                    down vote










                    up vote
                    -1
                    down vote









                    Just in case someone finds this useful, even thought it's not about Jupyter specifically:



                    I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda hasn't been added to my ~/.zshrc and I was getting this error when trying to run it:



                    zsh: command not found: conda



                    So I added



                    # Anaconda
                    export PATH=$HOME/anaconda3/bin/:$PATH


                    to my .zshrc file, sourced (. ~/.zshrc) and am good to go.






                    share|improve this answer








                    New contributor




                    nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.









                    Just in case someone finds this useful, even thought it's not about Jupyter specifically:



                    I have installed Anaconda on Mojave using the GUI but since I am not using bash but zsh as my shell conda hasn't been added to my ~/.zshrc and I was getting this error when trying to run it:



                    zsh: command not found: conda



                    So I added



                    # Anaconda
                    export PATH=$HOME/anaconda3/bin/:$PATH


                    to my .zshrc file, sourced (. ~/.zshrc) and am good to go.







                    share|improve this answer








                    New contributor




                    nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.









                    share|improve this answer



                    share|improve this answer






                    New contributor




                    nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.









                    answered 2 hours ago









                    nana

                    992




                    992




                    New contributor




                    nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.





                    New contributor





                    nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.






                    nana is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.











                    • This might be useful if it weren’t so similar (almost identical) to the existing answer.
                      – Scott
                      15 mins ago
















                    • This might be useful if it weren’t so similar (almost identical) to the existing answer.
                      – Scott
                      15 mins ago















                    This might be useful if it weren’t so similar (almost identical) to the existing answer.
                    – Scott
                    15 mins ago




                    This might be useful if it weren’t so similar (almost identical) to the existing answer.
                    – Scott
                    15 mins ago

















                     

                    draft saved


                    draft discarded















































                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f320761%2fanaconda-python-and-zsh-issue-on-macos-sierra%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay