From c7a06e2ee186f988ca4c42e0b294cd4af6b9e69b Mon Sep 17 00:00:00 2001 From: Manuel Araoz Date: Sun, 5 Jan 2014 21:01:06 -0300 Subject: [PATCH] Installation guide for Ubuntu added to README file. --- .gitignore | 1 + README.md | 26 +++++++++++++++++++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 8fde730..7bf5bb5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ build/ node_modules/ *.swp +*~ diff --git a/README.md b/README.md index b4ece18..f90284d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,28 @@ -libcoin +bitcore ======= Nodejs Bitcoin Library + + + +INSTALLATION +============ + +For Ubuntu: + +# install git +sudo apt-get install git + +# download the code +git clone https://github.com/bitpay/bitcore.git + +# obtain latest version of node.js +sudo apt-get update +sudo apt-get install -y python-software-properties python g++ make +sudo add-apt-repository -y ppa:chris-lea/node.js +sudo apt-get update +sudo apt-get install nodejs + +# install bitcore +cd bitcore/ +npm install