Jack_of_All_Trades
Jack_of_All_Trades

Reputation: 11478

Configuring sqlalchemy for windows

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

Answers (2)

jocassid
jocassid

Reputation: 4889

The Command pip install sqlalchemy will download the necessary files and run setup.py install for you.

Upvotes: 1

Brandon
Brandon

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:

Sql Alchemy Instalation Guide

Upvotes: 9

Related Questions