JobHunter69
JobHunter69

Reputation: 2288

How to add Anaconda base as the interpreter in PyCharm?

I would like to use the "base" environment of Anaconda for Pycharm. However, I cannot find this option in the list of conda environments. Where should it be?

Upvotes: 2

Views: 5484

Answers (2)

Codistan
Codistan

Reputation: 1529

Ok so if anyone is wondering how to do this for MacOS. The path is ...anaconda3/python.app for python interpreter.

Upvotes: 0

terahertz
terahertz

Reputation: 3511

Step 1:

At the bottom right of your screen, click on "Python 3.x (myProjectName)" > Add Interpreter.

enter image description here

Step 2:

Click on "Conda environment" > check "Existing Environment" > navigate to wherever you installed Anaconda at > Select the python.exe at the root of Anaconda3 directory. (i.e. ~\Anaconda3\Python.exe).

enter image description here

Step 3:

You should be using Anaconda's base environment then: enter image description here

Upvotes: 5

Related Questions