Reputation: 11478
Is there any tutorials about how to set-up sqlalchemy for windows? I went to www.sqlalchemy.org and they don't have clear instructions about set-up for windows. When I opened the zipped package, I see distribute_setup, ez_setup and setup.py among other files but it doesn't see to install sqlalchemy.
Upvotes: 1
Views: 10341
Reputation: 4889
The Command pip install sqlalchemy
will download the necessary files and run setup.py install
for you.
Upvotes: 1
Reputation: 131
After unzipping open a command prompt and cd into the unzipped directory then run:
python setup.py install
Here is a link to the installation guilde:
Upvotes: 9