aboutsummaryrefslogtreecommitdiff
path: root/source/blog/2016-01-01-virtualenvs-for-everyone.md
diff options
context:
space:
mode:
authorZhiming Wang <zmwangx@gmail.com>2016-01-08 16:41:44 -0800
committerZhiming Wang <zmwangx@gmail.com>2016-01-08 16:41:44 -0800
commit7db0f99db806560475be747f720986cbef4b4d4b (patch)
treed2c51550b56cb56121e3a3ea3f836c0f26e4e096 /source/blog/2016-01-01-virtualenvs-for-everyone.md
parent9ba9fd365cbed597388e33829d3b19c29cc8b6f0 (diff)
downloadmy_new_personal_website-7db0f99db806560475be747f720986cbef4b4d4b.tar.xz
my_new_personal_website-7db0f99db806560475be747f720986cbef4b4d4b.zip
Fix slight styling issues in md source files...
discovered when doing site refresh.
Diffstat (limited to '')
-rw-r--r--source/blog/2016-01-01-virtualenvs-for-everyone.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blog/2016-01-01-virtualenvs-for-everyone.md b/source/blog/2016-01-01-virtualenvs-for-everyone.md
index d39882ca..bf7b9b7a 100644
--- a/source/blog/2016-01-01-virtualenvs-for-everyone.md
+++ b/source/blog/2016-01-01-virtualenvs-for-everyone.md
@@ -63,7 +63,9 @@ def find_packages(**kwargs): pass
Now, let `$HERE` be the directory containing our fake `setuptools/`, and `$PROJECT_ROOT` be the project root directory containing `setup.py`. Run
- PYTHONPATH=$HERE:$PYTHONPATH python $PROJECT_ROOT/setup.py
+```zsh
+PYTHONPATH=$HERE:$PYTHONPATH python $PROJECT_ROOT/setup.py
+```
and bam! We get the names of all scripts on stdout.