-
Notifications
You must be signed in to change notification settings - Fork 20
Installing Dependencies
Daniel M. Hendricks edited this page Oct 1, 2017
·
4 revisions
This page is intended to provide some tips if you need help installing Node.js, Composer, Gulp, and Bower.
I am not a Windows user, but this is how I would probably do it:
- Install Chocolatey:
- Right-click and run PowerShell as Administrator: Start > Run > All Programs > Accessories > Windows PowerShell > Windows PowerShell
- Set the PowerShell ExecutionPolicy to RemoteSigned with this command:
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
- Close PowerShell and reopen it as Administrator.
- Install packages:
choco install openssh git nodejs.install
choco install composer gulp-cli bower
Please feel free to send corrections.
- Install Xcode:
xcode-select --install
- Install Homebrew, then
brew update
- Install Node.js:
brew install node
- Install Composer:
curl -sS https://getcomposer.org/installer | php
mv composer.phar /usr/local/bin/composer
- Install Grunt & Bower:
sudo npm install -g gulp-cli
sudo npm install -g bower