How to run Conda?

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

    I am setting up a virtual machine running Ubuntu. I have anaconda 3 installed in the "Home" folder. When I typed "conda" into the terminal I was getting the error "conda: command not found" too.

    Typing the code below into the terminal worked for me...

    export PATH=$PATH:$HOME/anaconda3/bin
    

    to check it worked I typed:

    conda --version
    

    which responded with the version number.

提交回复
热议问题