From 5a467f55baf54f8f1ff4933de611b3102885085b Mon Sep 17 00:00:00 2001 From: Jeremy Kauffman Date: Sat, 21 Jan 2017 11:17:05 -0500 Subject: [PATCH] easier to read --- INSTALL.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 9779d07e2..138d3da0f 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -72,7 +72,6 @@ To install: git clone https://github.com/lbryio/lbry.git cd lbry - #the next two commands set up a virtual environment for lbry - these are optional but strongly recommended virtualenv lbry-venv source lbry-venv/bin/activate @@ -86,7 +85,16 @@ To verify your install, `which lbrynet-daemon` should return a path inside of th ## Making a Change +If you are not already inside the virtual environment, run: + ``` -source lbry-venv/bin/activate #this only needs to be run once, if you are not already in the virtual environment -python setup.py install #this will update lbrynet-daemon and other executables +source lbry-venv/bin/activate ``` + +Then run: + +``` +python setup.py install +``` + +This will update `lbrynet-daemon` and other executables.