Where does Anaconda Python install on Windows?

前端 未结 10 937
庸人自扰
庸人自扰 2020-12-07 15:18

I installed Anaconda for Python 2.7 on my Windows machine and wanted to add the Anaconda interpreter to PyDev, but quick googling couldn\'t find the default place where Anac

10条回答
  •  星月不相逢
    2020-12-07 15:53

    To find where Anaconda was installed I used the "where" command on the command line in Windows.

    C:\>where anaconda
    

    which for me returned:

    C:\Users\User-Name\AppData\Local\Continuum\Anaconda2\Scripts\anaconda.exe

    Which allowed me to find the Anaconda Python interpreter at

    C:\Users\User-Name\AppData\Local\Continuum\Anaconda2\python.exe

    to update PyDev

提交回复
热议问题