This is the important bit from your install log: Processing SQLAlchemy-0.9.8-py3.4.egg removing 'c:\python34\lib\site-packages\SQLAlchemy-0.9.8-py3.4.egg' (and everything under it) Extracting SQLAlchemy-0.9.8-py3.4.egg to c:\python34\lib\site-packages SQLAlchemy 0.9.8 is already the active version in easy-install.pth
SQLAlchemy was installed as an "egg" in the C:\python34\lib\site-packages directory, so presumably the source itself was at c:\python34\lib\site-packages\SQLAlchemy-0.9.8-py3.4.egg\sqlalchemy. The easy-install.pth file (also in the site-packages directory) should contain something like "./SQLAlchemy-0.9.8-py3.4.egg", which would normally cause that directory to be appended to your sys.path. So the first question would be "was SQLAlchemy properly added to easy_install.pth?", and the second would be "why isn't your Python installation using the .pth file properly?" Simon On Thu, Nov 13, 2014 at 2:06 PM, Matthew Albert <steelfire...@gmail.com> wrote: > Hi So I noticed that the SQLAlchemy installation didn't end up in a path > specified by sys.path. I tried: > 1. Appending a new path item to this variable to include where SQLAlchemy > was installed. This seem to have no positive effect. > 2. I moved the files to a path that was already defined by sys.path. This > seemed to work. Not sure why I wasn't successful with #1. > > Thx > Matt > > On Wednesday, November 12, 2014 3:25:56 PM UTC-5, Matthew Albert wrote: >> >> Hi, >> >> Downloaded SQLAlchemy 0.9.8 and installed on my win7 machine on python 3.4 >> using: >> python setup.py install. >> Installation text seems to indicate a successful install: >> http://pastebin.com/zcMzMn1e >> ... but when I attempt to issue: >> import sqlalchemy >> I get a ImportError: No module named 'sqlalchemy' >> >> Also tried using pip and get error: >> Cannot fetch index base URL https://pypi.python.org/simple/ >> Could not find any downloads that satisfy the requirement sqlalchemy >> >> Any thoughts? >> >> thx >> Matt > > -- > You received this message because you are subscribed to the Google Groups > "sqlalchemy" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to sqlalchemy+unsubscr...@googlegroups.com. > To post to this group, send email to sqlalchemy@googlegroups.com. > Visit this group at http://groups.google.com/group/sqlalchemy. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "sqlalchemy" group. To unsubscribe from this group and stop receiving emails from it, send an email to sqlalchemy+unsubscr...@googlegroups.com. To post to this group, send email to sqlalchemy@googlegroups.com. Visit this group at http://groups.google.com/group/sqlalchemy. For more options, visit https://groups.google.com/d/optout.