Tagged Questions

38
votes
3answers
6k views

Activate a virtualenv via fabric as deploy user

I want to run my fabric script locally, which will in turn, log into my server, switch user to deploy, activate the projects .virtualenv, which will change dir to the project and issue a git pull. ...
24
votes
2answers
2k views

How do you use pip, virtualenv and Fabric to handle deployment?

What are your settings, your tricks, and above all, your workflow? These tools are great but there are still no best practices attached to their usage, so I don't know what is the most efficient way ...
7
votes
3answers
556 views

Trouble activating virtualenv on server via Fabric

I am trying to run some Django management commands via Fabric on my staging server. The problem is it seems Fabric is not able to activate the virtualenv and thus using system python/libs when ...
6
votes
2answers
388 views

The anatomy of a Python web project: development, packaging, deployment

I'm new to Python (from Java+Ant) and was wondering if someone could detail how to best use Fabric+Pip+Virtualenv to set up a Python web application package skeleton. The end goal is to be able to do ...
4
votes
2answers
407 views

Why does Fabric display the disconnect from server message for almost 2 minutes?

Fabric displays Disconnecting from username@server... done. for almost 2 minutes prior to showing a new command prompt whenever I issue a fab command. This problem exists when using Fabric commands ...
3
votes
2answers
985 views

Activate a python virtual environment using activate_this.py in a fabfile on Windows

I have a Fabric task that needs to access the settings of my Django project. On Windows, I'm unable to install Fabric into the project's virtualenv (issues with Paramiko + pycrypto deps). However, I ...
3
votes
4answers
1k views

Activate virtualenv via os.system()

I'm writing a Python-based shell script to boilerplate a Django app with virtualenv, pip, and fabric. Should be straightforward enough, but it appears that I'm not able to activate and run commands in ...
0
votes
2answers
56 views

It is possible to install Fabric(Python) in Virtualenv? Getting an error

I'm trying to install Fabric in Virtualenv but I'm getting an error. I'm usinh Python 2.7.2+ src/MD2.c:31:20: fatal error: Python.h: No such file or directory compilation terminated. error: command ...
0
votes
1answer
81 views

django + virtualenv = atomic upgrade - is it possible?

I have a Django project running within a virtualevn with no site-packages. When it comes to pushing my new changes to the server, I would like to create a new virtualevn directory, install my project ...
0
votes
2answers
43 views

Can Django's test client use a specific virtualenv?

Is it possible to configure an instance of django.test.client.Client to use a specific virtualenv instead of the OS python install? If so, how? thanks! Edit: I'm using django.test.client.Client from ...
0
votes
1answer
404 views

Why does PIP install of python-couchdb experimental branch from SVN fail?

I'm setting up a Fabric/virtualenv/pip automated deployment for a project and I need to install the latest experimental branch of python-couchdb. Naturally, I stick it in my pip requirements file, ...