git ssb

0+

cel / ssbc/docs



Commit 7c1ed71346c7eba4db014e181e98ecd23e035a86

Update installation docs for missing dependencies

Installation failed for me until I installed some extra dependencies. I have documented them here.
Anthony Finch authored on 4/17/2017, 7:41:20 PM
GitHub committed on 4/17/2017, 7:41:20 PM
Parent: 08b43d3973cbef30349b13a1d40910b39f00f01d

Files changed

scuttlebot/install.mdchanged
scuttlebot/install.mdView
@@ -7,8 +7,17 @@
77
88 **Dependencies:**
99
1010 - node v4 and greater (you might like to use [nvm](https://github.com/creationix/nvm))
11+ - node-gyp (```npm install -g node-gyp```)
12+
13+***Linux Dependencies***
14+Installation may fail when building the libsodium dependencies due to missing aclocal. On Ubuntu you will need to run:
15+
16+```bash
17+sudo apt-get install autotools-dev
18+sudo apt-get install automake
19+```
1120
1221 **Install:**
1322
1423 ```bash
@@ -41,8 +50,17 @@
4150
4251 **Dependencies:**
4352
4453 - node v4 and greater (you might like to use [nvm](https://github.com/creationix/nvm))
54+ - node-gyp (```npm install -g node-gyp```)
55+
56+***Linux Dependencies***
57+Installation may fail when building the libsodium dependencies due to missing aclocal. On Ubuntu you will need to run:
58+
59+```bash
60+sudo apt-get install autotools-dev
61+sudo apt-get install automake
62+```
4563
4664 **Install:**
4765
4866 ```bash
@@ -75,5 +93,5 @@
7593
7694 ```bash
7795 git pull origin master
7896 npm install
79-```
97+```

Built with git-ssb-web