File tree Expand file tree Collapse file tree 1 file changed +18
-4
lines changed
Expand file tree Collapse file tree 1 file changed +18
-4
lines changed Original file line number Diff line number Diff 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
1751761. 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+
1871961. 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.
1972061 . 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
2162301 . Install Ruby and RubyGems.
217231
You can’t perform that action at this time.
0 commit comments