Why Anaconda does not recognize conda command?

前端 未结 15 2077
挽巷
挽巷 2020-12-13 05:52

I installed the latest version of Anaconda. Now I want to install OpenCV within it. When I type:

conda install -c https://conda.binstar.org/anaconda opencv
<         


        
15条回答
  •  感情败类
    2020-12-13 06:44

    Try setting the file path using (for anaconda3)...

    export PATH=~/anaconda3/bin:$PATH
    

    Then check whether it worked with...

    conda --version
    

    This worked for me when 'conda' was returning 'command not found'.

提交回复
热议问题