summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2017-08-07 23:05:39 +0300
committerYuval Adam <_@yuv.al>2017-08-07 23:05:39 +0300
commitfae86d055e5fca5bc54c431f92eca43b2e216d33 (patch)
tree22b31963ed4fe9c68e12d01957d1e37ebd764ba7
parent467acce0adf9d73708cbac562c196cdead70cfe6 (diff)
Update venv requirements
-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
```