How to run Conda?

后端 未结 30 1917
予麋鹿
予麋鹿 2020-11-22 08:56

I installed Anaconda and can run Python, so I assume that I installed it correctly. Following this introductory documentation, I am trying to install Python v3.3, so I am co

30条回答
  •  没有蜡笔的小新
    2020-11-22 09:29

    I'm on High Sierra MAC OS and just installed Anaconda3 via HomeBrew command. I had issue with running :

     conda
    

    It'd also give me:

    -bash: conda: command not found
    

    I tried running:

    export PATH=~/anaconda3/bin:$PATH
    

    but it needs ENTIRE path. so here are the correct steps:

    $ nano ~/.bash_profile
    

    Now export the ENTIRE path, in my case it was:

    export PATH=/usr/local/anaconda3/bin:$PATH
    

    Exit out and run:

    $ source ~/.bash_profile
    

    Then try:

    $ conda
    

    it'll output:

     $ conda --version
        conda 4.4.10
    

提交回复
热议问题