I just get sqlalchemy with pip doing
pip install sqlalchemy
When I import a simple Class from sqlalchemy like this in a python console
from sqlalchemy import Column
I get this error
from sqlalchemy import Column
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "sqlalchemy.py", line 5, in <module>
from sqlalchemy import Column, Integer, Unicode, UnicodeText, String
ImportError: cannot import name Column
I have the same error on an OSX and an Ubuntu environment. On the SQLAlchemy website support section there is no references about this issues. Is it something related to my Python environment?