Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install latest version of fabric

Tags:

apt-get

fabric

How do I install the latest version of fabric on debian? When calling

apt-get install fabric

version 0.9.1 is being installed. The most recent version is 1.4.3 though.

like image 339
Michael Küller Avatar asked Sep 12 '12 14:09

Michael Küller


1 Answers

You can install the latest version from PyPI using pip or easy_install.

For example:

apt-get install python-setuptools  # for easy_install
easy_install pip
pip install fabric
like image 62
yprez Avatar answered Oct 09 '22 22:10

yprez