How to install the latest fabric

How to install the latest version on debian? Upon call

apt-get install fabric

version 0.9.1 is installed. However, the latest version is 1.4.3.

+5
source share
2 answers

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

For instance:

apt-get install python-setuptools  # for easy_install
easy_install pip
pip install fabric
+9
source

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
0
source

All Articles