Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 575 Bytes

installation.rst

File metadata and controls

33 lines (19 loc) · 575 Bytes

Installing peewee

Most users will want to simply install the latest version, hosted on PyPI:

pip install peewee

Installing Manually

The project is hosted at https://github.com/coleifer/peewee and can be installed manually:

git clone https://github.com/coleifer/peewee.git
cd peewee
python setup.py install

Running tests

You can test your installation by running the test suite.

python setup.py test