I have installed sqlalchemy in my pathon. Im running python 2.7.15 When I execute my test program it says;
ImportError: No module named sqlalchemy.util._collections
I have installed modules with my python version.
- Flask-SQLAlchemy 2.3.2
- SQLAlchemy 1.2.2
WHy do I get this error in pycharm. PyCharm run configurations picks correct python version. In console i tried the import statement it works.
$ python --version
Python 2.7.15
>>> from sqlalchemy.util import _collections
>>>
Why I get this error in pycharm?