Created
September 18, 2015 20:46
-
-
Save aymanfarhat/8bc53dc85c40271d9f4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apt-get update | |
echo "[Install] Build essential" | |
sudo apt-get install build-essential | |
echo "[Install] Python software properties" | |
apt-get install python-software-properties | |
echo "[Install] git" | |
apt-get install git | |
echo "[Install] node" | |
curl -sL https://deb.nodesource.com/setup | sudo bash - | |
apt-get update | |
apt-get install nodejs | |
ln -s /usr/bin/nodejs /usr/sbin/node | |
echo "[Install] npm" | |
apt-get install npm | |
echo "[Install] Bower" | |
npm install --global bower | |
echo "[Install] Gulp" | |
npm install --global gulp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment