How to run Conda?

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

    Run

    cat ~/.bash_profile
    

    to check if anaconda is there. If not you should add its path there. If conda is there copy the entire row that you see the Anaconda there from "export" to the end of line. like this:

    export PATH=~/anaconda3/bin:$PATH
    

    Run this in your terminal. Then run

    conda --version
    

    to see if it is exported and running!

提交回复
热议问题