The following program works well under anaconda from command line interface (I am using Mac OS), but it has errors about cannot import/find tensorflow module from PyCharm (u
You need to do these following steps:
Click on the + button and add the path for your directory containing init file of this library.
Hope that this answer helped you
Under Preferences => Project Interpreter
setting, is tensorflow listed among the packages?
Apparently No (from your screenshots).
Are there any other python conda installations when you use the drop down on project interpreter? If there are, try those and see what happens. The tensorflow
package is definitely in another conda
installation.
From this post on SO:
conda is the package manager. Anaconda is a set of about a hundred packages including conda, numpy, scipy, ipython notebook, and so on.
You installed Miniconda, which is a smaller alternative to Anaconda that is just conda and its dependencies (as opposed to Anaconda, which is conda and a bunch of other packages like numpy, scipy, ipython notebook, etc.). Once you have Miniconda, you can easily install Anaconda into it with conda install anaconda.
So conda is a package manager, Anaconda is a collection of packages and miniconda (emphasis mine) is a light weight alternative to Anaconda.
You should into setting up a virtualenv to avoid such problems in the future.