-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ccac12
commit d63c880
Showing
1 changed file
with
16 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Installation | ||
|
||
This section explains how to install `django-commons-playground` to use within | ||
your project. It assumes you have a working installation of Python 3. | ||
|
||
1. Create venv/virtualenv (`python -m venv venv`) | ||
2. Activate venv/virtualenv (`source venv/bin/activate`) | ||
3. Install `django-commons-playground` (`pip install django-commons-playground`) | ||
|
||
All together now: | ||
|
||
```shell | ||
python -m venv venv | ||
source venv/bin/activate | ||
pip install django-commons-playground | ||
``` |