Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 257
Semicolons and Duct Tape Avatar asked May 09 '16 13:05

Semicolons and Duct Tape


People also ask

Where is the path of Anaconda Python?

In some cases (like mine) the path is just C:\Users\[User_Name]\Anaconda3 .

Where is Anaconda after installation?

if you had successfully installed the anaconda the in windows 10 search bar you can type anaconda prompt to get the anaconda command line where you can start anaconda navigator by typing anaconda-navigator in anaconda prompt.

Does Anaconda install Python on Windows?

Anaconda comes bundled with about 600 packages pre-installed including NumPy, Matplotlib and SymPy. These three packages are very useful for problem solvers and will be discussed in subsequent chapters. Follow the steps below to install the Anaconda distribution of Python on Windows.

How do I know if Anaconda is installed in CMD?

To test your installation, in your Terminal window or Anaconda Prompt, run the command conda list . For a successful installation, a list of installed packages appears.


2 Answers

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

like image 160
Semicolons and Duct Tape Avatar answered Oct 14 '22 06:10

Semicolons and Duct Tape


Open the Anaconda Prompt and type:

> where python 
like image 21
u2gilles Avatar answered Oct 14 '22 06:10

u2gilles