Commit f3af8363 by Han Su Kim

Merge pull request #674 from edx/han/util/install/vagrant

changes made to install.sh
parents f4006d9a d529e621
...@@ -11,16 +11,14 @@ ...@@ -11,16 +11,14 @@
## Sanity check ## Sanity check
## ##
if [[ ! "$(lsb_release -d | cut -f2)" =~ $'Ubuntu 12.04' ]]; then if [[ ! "$(lsb_release -d | cut -f2)" =~ $'Ubuntu 12.04' ]]; then
echo "This script is only know to work on Ubuntu 12.04, exiting..."; echo "This script is only known to work on Ubuntu 12.04, exiting...";
exit; exit;
fi fi
## ##
## Install system pre-requisites ## Install system pre-requisites
## ##
sudo apt-get install -y python-pip python-apt git-core build-essential python-dev libxml2-dev libxslt-dev curl sudo apt-get install -y build-essential software-properties-common python-software-properties curl git-core libxml2-dev libxslt1-dev python-pip python-apt python-dev
sudo apt-get install -y software-properties-common python-software-properties
sudo apt-get install -y python-pip python-dev build-essential
wget https://bitbucket.org/pypa/setuptools/raw/0.8/ez_setup.py -O - | sudo python wget https://bitbucket.org/pypa/setuptools/raw/0.8/ez_setup.py -O - | sudo python
sudo pip install --upgrade pip sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv sudo pip install --upgrade virtualenv
......
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