How to run Conda?

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

    Open your terminal and type the following command to add anaconda to environment path

    for anaconda 2 :

    export PATH=~/anaconda2/bin:$PATH
    

    for anaconda 3 :

    export PATH=~/anaconda3/bin:$PATH
    

    Then to check the conda version just type,

    conda --version
    

    Create an environment using the following command,

    conda create --name myenv
    

    Activate the source using,

    source activate myenv
    

    Then your anaconda IDE is ready!!!

提交回复
热议问题