Pycharm conda env does not show packages installed via pip

Launch Pycharm using Anaconda, with condaenv running Python 2.7 on OS X.

In the terminal, the launch conda listshows the list of packages as installed ... but it does not appear in the list of packages in the "Preferences> Project Interpreter" section, and PyCharm cannot autocomplete everything related to packages.

But when I run the same script from the command line, it works fine.

Any ideas on why the same conda env in PyCharm cannot see the packages installed in pip?

In the terminal list:

in the terminal list

In the pycharm package list:

in the pycharm package list

+4
source share
1 answer

In PyCharm 2017.1:

  • Project Interpreter ( ) Add Local
  • conda env ( ~/anaconda/envs/your-env-name/bin/python)

Preferences Project Interpreter.

0

Source: https://habr.com/ru/post/1654882/


All Articles