How to run Conda?

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

    you might want to try this:

    for anaconda 2 :

    export PATH=~/anaconda2/bin:$PATH
    

    for anaconda 3 :

    export PATH=~/anaconda3/bin:$PATH
    

    for anaconda 4 :

    Use the Anaconda Prompt

    and then

    conda --version
    

    to confirm that it worked. The export PATH=~/anaconda3/bin:$PATH works but stops when you exit the terminal in order change that you have to run sudo nano ~/.bashrc and then copy the path into the file and save it after that you activate the changes using source .bashrc.

    check with conda install anaconda-navigator if not installed follow the anaconda install instructions again

    follow along with this video https://youtu.be/Pr25JlaXhpc

提交回复
热议问题