How to run Conda?

后端 未结 30 1915
予麋鹿
予麋鹿 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:47

    Answer for

    • Anaconda3 5.2.0 installer
    • macOS HighSierra
    • ZSH

    1. Unfortunately, the installer puts the PATH definition only into .bash_profile, but not the .zshrc config.
    2. Contrary to the given answers, it doesn't (necessarily) install in ~/anaconda3/, but instead in /anaconda3/.

    The PATHdefintion in .zshrc must therefore be this:

    ...
    # Anaconda3
    export PATH="/anaconda3/bin:$PATH"
    ...
    

提交回复
热议问题