1

This shows my Anaconda Environment. I created a new environment named "my_env."

However, when I tried to add a Python Interpreter from an existing environment and tried to select my_env from the "envs" folder, there was none.

Can anyone please let me know how I can navigate my "my_env" environment from the second screenshot?

Thanks.

Richard
  • 487
  • 1
  • 4
  • 8

1 Answers1

0

This answer might help.

You need to add the anaconda envs folder to the path, for example:

set PATH=C:\Anaconda\envs\py3x\Scripts;C:\Anaconda\envs\py3x;%PATH%

and once that's done you can activate the environment by using the command:

activate my_env

in the pycharm terminal, and it should activate and show by prefixing the terminal with:

(my_env)

RustyBrain
  • 115
  • 1
  • 12