How to run Conda?

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

    My env: macOS & anaconda3

    This works for me:

    $ nano ~/.bash_profile
    

    Add this:

    export PATH=~/anaconda3/bin:$PATH
    

    *The export path must match with the actual path of anaconda3 in the system.

    Exit out and run:

    $ source ~/.bash_profile
    

    Then try:

    $ jupyter notebook
    

提交回复
热议问题