-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Working on a big cleanup of the peewee documentation
- Loading branch information
Showing
4 changed files
with
317 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,29 @@ | ||
.. _installation: | ||
|
||
Installing peewee | ||
================= | ||
|
||
First you need to grab a checkout of the code. There are a couple ways:: | ||
.. code-block:: console | ||
pip install peewee | ||
Installing with git | ||
------------------- | ||
|
||
To get the latest development version:: | ||
|
||
git clone http://github.com/coleifer/peewee.git | ||
.. code-block:: console | ||
git clone https://github.com/coleifer/peewee.git | ||
cd peewee | ||
python setup.py install | ||
If you grabbed the checkout, to install system-wide, use:: | ||
python setup.py install | ||
You can test your installation by running the test suite. | ||
|
||
.. code-block:: console | ||
python setup.py test | ||
Feel free to check out the :ref:`example-app` which ships with the project. |
Oops, something went wrong.