How to run Conda?

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

    Mostly it is because when we install Anaconda in the end it adds the anaconda path to PATH variable in .bashrc file. So we just need to restart the terminal or just do

    source ~/.bashrc
    

    if still it don't work then follow this commands.

    cat >> ~/.bashrc
    

    paste the below command for anaconda3

    export PATH=~/anaconda3/bin:$PATH
    

    hit Enter then ctrl+d

    source ~/.bashrc
    

提交回复
热议问题