summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4b85c9e..e259cc4 100644
--- a/README.md
+++ b/README.md
@@ -4,10 +4,12 @@
### Python Requirements Setup
+Install all requirements, preferably within a virtualenv:
+
```bash
$ python -m venv venv
$ source venv/bin/activate
-$ pip install -r requirements.txt
+(venv)$ pip install -r requirements.txt
```
### Update Wiki Content
@@ -32,11 +34,11 @@ $ cat >content/blog/2017-12-31-happy-new-year.md << EOF
### Dev Server
```bash
-$ FLASK_DEBUG=1 FLASK_APP=app.py flask run
+(venv)$ FLASK_DEBUG=1 FLASK_APP=app.py flask run
```
### Build
```bash
-$ python freeze.py
+(venv)$ python freeze.py
```