Michael Küller
Michael Küller

Reputation: 4014

How to install latest version of 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.

Upvotes: 6

Views: 12437

Answers (2)

osama7901
osama7901

Reputation: 1671

In my case I had to install the following packages:

sudo apt-get update
sudo apt-get install python-dev python-setuptools gcc
sudo easy_install pip
sudo apt-get install libssl-dev libffi-dev
sudo pip install six==1.6.0
sudo pip install fabric

Upvotes: 0

yprez
yprez

Reputation: 15154

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

Upvotes: 11

Related Questions