Created
October 10, 2012 09:04
-
-
Save observerss/3864247 to your computer and use it in GitHub Desktop.
ubuntu initialize script
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
#!/bin/sh | |
apt-get update | |
apt-get -y upgrade | |
apt-get -y install build-essential python-dev libevent-dev libxslt-dev uuid-dev python-setuptools dtach libzmq-dev | |
apt-get -y install sysstat vnstat redis-server mysql-server | |
easy_install pip | |
pip install virtualenvwrapper | |
pip install cython | |
pip install zerorpc lxml requests pymongo mongoengine redis redisco fabric ipython sqlalchemy bottle django flask | |
# install git and legit | |
apt-get -y install git; pip install legit; legit install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment