[Fab-user] Fabric 0.9.3

2011-10-23 Thread Kaushal Shriyan
Hi, I am running Fabric 0.9.3 on Ubuntu Linux 11.04 Desktop, is there a way to install 1.2.2. I am using the below command. pip install http://pip.openplans.org Downloading/unpacking http://pip.openplans.org Downloading pip.openplans.org Cannot unpack file /tmp/pip-qtQQZM-unpack/pip.openplans.org

Re: [Fab-user] Fabric 0.9.3

2011-10-23 Thread Kaushal Shriyan
On Sun, Oct 23, 2011 at 9:34 PM, Ahsan Rabbani ahs...@gmail.com wrote: If you installed it via apt then remove it first and try installing using easy_install. You will need to apt-get install python-setuptools for easy_install. On Sun, Oct 23, 2011 at 9:56 AM, Kaushal Shriyan

Re: [Fab-user] Fabric 0.9.3

2011-10-23 Thread Jeff Forcier
On Sun, Oct 23, 2011 at 9:18 AM, Kaushal Shriyan kaushalshri...@gmail.com wrote: kaushal@kaushal-laptop:~$ python -V Python 2.7.1+ kaushal@kaushal-laptop:~$ sudo easy_install http://pip.openplans.org Downloading http://pip.openplans.org You appear to be installing pip's *website*, not pip

[Fab-user] fab version

2011-10-23 Thread Kaushal Shriyan
Hi, I have this fabric python script. #!/usr/bin/env python from fabric.api import * env.shell = '/bin/bash -l -c' out_log = open(output.txt, w) with open(hosts.txt) as host_file: host_list = [x.strip() for x in host_file.readlines()] @hosts(host_list) def install(): with

Re: [Fab-user] Fabric 0.9.3

2011-10-23 Thread Kaushal Shriyan
On Sun, Oct 23, 2011 at 10:50 PM, Jeff Forcier j...@bitprophet.org wrote: On Sun, Oct 23, 2011 at 9:18 AM, Kaushal Shriyan kaushalshri...@gmail.com wrote: kaushal@kaushal-laptop:~$ python -V Python 2.7.1+ kaushal@kaushal-laptop:~$ sudo easy_install http://pip.openplans.org Downloading