From a75838030a7457fa7dc06403065c55c867104002 Mon Sep 17 00:00:00 2001 From: Ben Gorlick Date: Mon, 1 May 2017 17:12:40 -0700 Subject: [PATCH] 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. --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index dcb0e1cd7..3689fae69 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -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: