-
-
Save snormore/5455424 to your computer and use it in GitHub Desktop.
This file contains 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
DEBIAN_FRONTEND=noninteractive sudo apt-get -y install git-core git-gui git-doc redis-server mysql-server mongodb postresql ruby-full libmysqlclient15-dev libxml2-dev libxslt-dev python-setuptools python-dev | |
#install pip and virtualenv | |
sudo easy_install pip | |
sudo pip install virtualenv | |
sudo pip install virtualenvwrapper | |
#setup virtualenvs | |
mkdir ~/virtualenvs | |
echo "export WORKON_HOME=~/virtualenvs" >> ~/.zshrc | |
echo "source /usr/local/bin/virtualenvwrapper.sh" >> ~/.zshrc | |
echo "export PIP_VIRTUALENV_BASE=~/virtualenvs" >> ~/.zshrc | |
source ~/.zshrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment