easier to read

This commit is contained in:
Jeremy Kauffman 2017-01-21 11:17:05 -05:00 committed by GitHub
parent 9a24bddead
commit 5a467f55ba

View file

@ -72,7 +72,6 @@ To install:
git clone https://github.com/lbryio/lbry.git git clone https://github.com/lbryio/lbry.git
cd lbry cd lbry
#the next two commands set up a virtual environment for lbry - these are optional but strongly recommended
virtualenv lbry-venv virtualenv lbry-venv
source lbry-venv/bin/activate 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 ## 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 source lbry-venv/bin/activate
python setup.py install #this will update lbrynet-daemon and other executables
``` ```
Then run:
```
python setup.py install
```
This will update `lbrynet-daemon` and other executables.