-
Notifications
You must be signed in to change notification settings - Fork 21
Installation
Luis Felipe Álvarez Burgos edited this page Aug 12, 2014
·
6 revisions
First step, you need install some tools (if you dont have it)
sudo apt-get install virtualenvwrapper
Second step, create a virtualenv
mkvirtualenv SOME_NAME -a /the/path/to/write-it
Install the requirements
pip install -r requirements.txt
(I think I missed half of the commands but that is sort of close)
1 - Missing python-dev In debian/ubuntu we found that sometimes we get the following error
fatal error: pyconfig.h: No such file or directory
And we solved it by running:
sudo apt-get install python-dev
2 - Missing kombu and billiard
Sometimes kombu is missing and you can install it manually with the following command
pip install kombu billiard