Update INSTALL.md to fix broken pip3 install

Fixed the Ubuntu install instructions -- previously it will break on being unable to find pip3. 
Tested this on Ubuntu 16.04 and 17+ server.
This commit is contained in:
Ben Gorlick 2017-05-01 17:12:40 -07:00 committed by Christian Decker
parent 162dac1271
commit a75838030a

View File

@ -20,12 +20,12 @@ To Build on Ubuntu 16.04
Get dependencies:
```
sudo apt-get install autoconf libtool libprotobuf-c-dev libsqlite3-dev libgmp-dev libsqlite3-dev
sudo apt-get install -y autoconf libtool libprotobuf-c-dev libsqlite3-dev libgmp-dev libsqlite3-dev
```
For development or running tests, get additional dependencies:
```
sudo apt-get install asciidoc valgrind pip3 && pip3 install python-bitcoinlib
sudo apt-get install -y asciidoc valgrind python3-pip && pip3 install python-bitcoinlib
```
Clone lightning: