Skip to content

Commit b8c2d34

Browse files
committed
Update Readme
1 parent 33f2a89 commit b8c2d34

File tree

1 file changed

+18
-4
lines changed

1 file changed

+18
-4
lines changed

README.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ Make sure you have the following dependencies installed on your system.
170170
export NVM_DIR="$HOME/.nvm" \
171171
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" \
172172
nvm install --lts
173+
npm install
173174
```
174175

175176
1. Install Python and PIP.
@@ -179,11 +180,19 @@ Make sure you have the following dependencies installed on your system.
179180
sudo apt-get install python-pip python2.7-dev build-essential \
180181
sudo pip install --upgrade pip
181182
```
183+
182184
On OSX:
185+
183186
```bash
184187
brew install python
185188
```
186189

190+
Once you have python and pip ready, run the command below
191+
192+
```
193+
pip install -r requirements.txt
194+
```
195+
187196
1. Install JDK8 and Gradle. The best option for this is to use
188197
[sdkman](http://sdkman.io/install.html)
189198
@@ -197,21 +206,26 @@ Make sure you have the following dependencies installed on your system.
197206
1. Install PHP 5 with CURL.
198207

199208
On Linux:
209+
200210
```bash
201211
sudo add-apt-repository ppa:ondrej/php -y
202212
sudo apt-get update
203213
sudo apt-get install -y --force-yes php5.6
204214
```
205215

206216
On OSX:
217+
207218
```bash
208219
brew install php56
209220
```
210221

211-
- Install Composer.
212-
```bash
213-
curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
214-
```
222+
Once you have php ready, please install
223+
[Composer](https://getcomposer.org/download/)
224+
225+
```bash
226+
curl -sS https://getcomposer.org/installer | \
227+
sudo php -- --install-dir=/usr/local/bin --filename=composer
228+
```
215229

216230
1. Install Ruby and RubyGems.
217231

0 commit comments

Comments
 (0)