-
Notifications
You must be signed in to change notification settings - Fork 93
Installation guide with screenshots OSX
Dmitry Utkin edited this page Aug 24, 2016
·
1 revision
Download and install Mac Ports https://www.macports.org/install.php
Mac OS X has outdated bash 3, which is not supported with ngrest.
To install recent version of bash, open terminal and enter:
sudo port install bash
After installation is finished, close all terminal windows, open a new terminal and check bash version with:
bash --version
it must be 4.3.xx or newer.
Copy and paste the line to the terminal window:
wget -qO- http://bit.ly/ngrest | bash
If nothing happen when you started this, try to remove q
from -qO-
option to see error log. If error related to sertificate you may try to disable certificate checking:
wget --no-check-certificate -qO- http://bit.ly/ngrest | bash
After installation is finished you can create new project: https://github.com/loentar/ngrest#create-a-new-project.