Created
September 13, 2012 01:35
-
-
Save anabelle/3711275 to your computer and use it in GitHub Desktop.
Lo que hice para poner a andar pip y virtualenv en crunchbang
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
# Instala paquetes necesarios | |
sudo apt-get install postgresql | |
sudo apt-get install postgresql-server-dev-9.1 | |
sudo apt-get install python-pip | |
sudo apt-get install python-dev | |
sudo pip install virtualenv | |
sudo pip install virtualenvwrapper | |
# Crea y activa entorno virtual | |
virtualenv <nombre_proyecto> | |
cd <nombre_proyecto> | |
source bin/activate | |
# Clona proyecto e instala dependencias | |
git clone <repo> | |
cd <repo> | |
pip install -r dependencies.txt | |
# Inicia servidor de desarrollo | |
python manage.py runserver | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment