Install Fabric 1.8.3 Manually on Ubuntu 12.04

When you install Fabric with apt-get install fabric, you get a fabric with version 1.3.x, which is too old. So we need install it manually:

apt-get install -y python-dev
apt-get install -y python-pip
pip install fabric

That's it. If you want to speed up the installation process, download Fabric-1.8.3.tar.gz and paramiko-1.12.3.tar.gz from PYPI. Then install them with:

pip install paramiko-1.12.3.tar.gz
pip install Fabric-1.8.3.tar.gz

Note: when install from source (tar.gz file), python-dev is necessary, or you will get a compile error.

posted on 2014-03-26 19:00  leechau  阅读(253)  评论(0编辑  收藏  举报

导航