Created
May 9, 2012 19:26
-
-
Save wbotelhos/2648191 to your computer and use it in GitHub Desktop.
Python environment project (Ubuntu)
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
# Project | |
sudo pip install mockito | |
sudo pip install nose | |
wget http://archive.ubuntu.com/ubuntu/pool/main/t/twisted/python-twisted-bin_11.0.0-2_i386.deb | |
sudo dpkg -i python-twisted-bin_11.0.0-2_i386.deb | |
wget http://archive.ubuntu.com/ubuntu/pool/universe/p/python-pika/python-pika_0.9.5-1_all.deb | |
sudo dpkg -i python-pika_0.9.5-1_all.deb | |
wget http://archive.ubuntu.com/ubuntu/pool/universe/p/python-redis/python-redis_2.4.9-1_all.deb | |
sudo dpkg -i python-redis_2.4.9-1_all.deb | |
# Package | |
apt-get install debhelper | |
# Config | |
sudo rabbitmqctl add_vhost HOST | |
sudo rabbitmqctl add_user USER PASSWORD | |
sudo rabbitmqctl set_permissions -p GROUP USER ".*" ".*" ".*" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment