How to check that the anaconda package was properly installed

后端 未结 4 1371
慢半拍i
慢半拍i 2020-12-15 18:20

I\'m completely new to Python and want to use it for data analysis. I just installed Python 2.7 on my mac running OSX 10.8. I need the NumPy, SciPy, matplotlib and csv packa

4条回答
  •  南笙
    南笙 (楼主)
    2020-12-15 18:55

    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.

提交回复
热议问题