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: python

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: spa

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.code

相關文章
相關標籤/搜索