I installed anaconda on my windows, and I want to use the anaconda built-in python as my eclipse Pydev python interpreter. But when I want to add the anaconda built-in python path to my eclipse Pydev python interpreter, I can not find the path. Where does anaconda python is installed on Windows?
1. The Steps To Find Where The Anaconda Python Is Installed On Windows.
- Click the Windows start menu —> All Programs —> Anaconda3(64-bit) —> Anaconda Navigator(anaconda3) to open the Anaconda Navigator window.
- Then click the Environments menu item on the Anaconda Navigator window left side.
- You can see a default anaconda virtual environment (base(root)) on the window right side.
- Click the triangle button at the end of the base(root) virtual environment.
- Click the Open Terminal menu item on the popup menu list.
- Input the command where anaconda in the prompt dos window, it will return the anaconda installed path.
(base) C:\Users\Jerry>where anaconda C:\Users\Jerry\anaconda3\Scripts\anaconda.exe
- Input the command where python where return the anaconda python installed directory.
(base) C:\Users\Jerry>where python C:\Users\Jerry\anaconda3\python.exe
- Now you can add the above path to your Windows PATH system environment variable to access python in the dos window.
- And you can use the python path when you configure the python interpreter in eclipse Pydev.
2. Get Anaconda Python Installed Directory With Conda Command.
- Anaconda provides the command conda to return a lot of useful information.
- Click the Windows start menu —> All Programs —> Anaconda3(64-bit) —> Anaconda Prompt(anaconda3) to open the anaconda prompt window.
- Input the command conda info and click the enter key, then it will list all the information about the anaconda installation.
(base) C:\Users\Jerry>conda info active environment : base active env location : C:\Users\Jerry\anaconda3 shell level : 1 user config file : C:\Users\Jerry\.condarc populated config files : C:\Users\Jerry\.condarc conda version : 4.10.1 conda-build version : 3.21.4 python version : 3.8.8.final.0 virtual packages : __win=0=0 __archspec=1=x86_64 base environment : C:\Users\Jerry\anaconda3 (writable) conda av data dir : C:\Users\Jerry\anaconda3\etc\conda conda av metadata url : https://repo.anaconda.com/pkgs/main channel URLs : https://repo.anaconda.com/pkgs/main/win-64 https://repo.anaconda.com/pkgs/main/noarch https://repo.anaconda.com/pkgs/r/win-64 https://repo.anaconda.com/pkgs/r/noarch https://repo.anaconda.com/pkgs/msys2/win-64 https://repo.anaconda.com/pkgs/msys2/noarch package cache : C:\Users\Jerry\anaconda3\pkgs C:\Users\Jerry\.conda\pkgs C:\Users\Jerry\AppData\Local\conda\conda\pkgs envs directories : C:\Users\Jerry\anaconda3\envs C:\Users\Jerry\.conda\envs C:\Users\Jerry\AppData\Local\conda\conda\envs platform : win-64 user-agent : conda/4.10.1 requests/2.25.1 CPython/3.8.8 Windows/7 Windows/6.1.7601 administrator : False netrc file : None offline mode : False (base) C:\Users\Jerry>
- You can get the anaconda installed directory from the active env location item of the above information.
- You can also run the command where anaconda, and where python in the above anaconda prompt window to get the accurate python installed directory.
3. Get The Python Installed Directory By Executing Python Script.
- Open a terminal and run the command python to go to the Python interactive console.
- Then run the below command in the above console to print out the current Python installed directory.
>>> import sys >>> sys.exec_prefix 'C:\\Users\\zhaosong\\anaconda3\\envs\\MyPythonEnv'