Commit d27c6a84 by John Jarvis

updating for coffeescript

parent 1a81fc12
...@@ -196,6 +196,11 @@ case `uname -s` in ...@@ -196,6 +196,11 @@ case `uname -s` in
output "Installing virtualenv" output "Installing virtualenv"
sudo pip install virtualenv virtualenvwrapper >> $LOG sudo pip install virtualenv virtualenvwrapper >> $LOG
} }
command -v coffee &>/dev/null || {
output "Installing coffee script"
curl http://npmjs.org/install.sh | sh
npm install -g coffee-script
}
;; ;;
*) *)
error "Unsupported platform" error "Unsupported platform"
......
...@@ -26,6 +26,10 @@ There is also a script "create-dev-env.sh" that automates these steps. ...@@ -26,6 +26,10 @@ There is also a script "create-dev-env.sh" that automates these steps.
d) Install python virtualenv if necessary d) Install python virtualenv if necessary
sudo pip install virtualenv virtualenvwrapper sudo pip install virtualenv virtualenvwrapper
e) Install coffee script
curl http://npmjs.org/install.sh | sh
npm install -g coffee-script
3) Install Ubuntu dependencies (Linux users only) 3) Install Ubuntu dependencies (Linux users only)
sudo apt-get install curl python-virtualenv build-essential python-dev gfortran liblapack-dev libfreetype6-dev libpng12-dev libxml2-dev libxslt-dev yui-compressor coffeescript sudo apt-get install curl python-virtualenv build-essential python-dev gfortran liblapack-dev libfreetype6-dev libpng12-dev libxml2-dev libxslt-dev yui-compressor coffeescript
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment