Where does Anaconda Python install on Windows?

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 Anaconda installed, and searching SO didn't turn up anything useful, so.

Where does Anaconda 4.0 install on Windows 7?


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:UsersUser-NameAppDataLocalContinuumAnaconda2Scriptsanaconda.exe

Which allowed me to find the Anaconda Python interpreter at

C:UsersUser-NameAppDataLocalContinuumAnaconda2python.exe

to update PyDev


You can search for "Anaconda prompt" in installed programs and run it.
When it opens, it shows the directory anaconda is working from.

As you can see c:programdataanaconda2 is my installed directory.
*side note: programdata folder is hidden in windows so you'll have to enter its path in the folder explorer to access it.


This one is easy. When you start the installation, Anaconda asks "Destination Folder" as below screenshot. If you are not sure where did default installation go, double click setup file and see what anaconda offers as a default location.
蟒蛇形象

链接地址: http://www.djcxy.com/p/30262.html

上一篇: 在bash上的`which`的cmd / powershell相当于什么?

下一篇: Anaconda Python在Windows上安装在哪里?