Download

or fetch directly from the GitHub-Repository:

$ git clone git://github.com/wplaschg/BitLift.git

Requirements

BitLift needs Python 2.x (at least 2.7)

Required libraries for SFTP

If you need to access your servers via SFTP you need the following additional Python libraries:

Windows (pre-build binaries)

Mac OS X / Linux

Download the source code, open the terminal, go to the directories of the libraries, build and install them via the setup script setup.py:

$ python setup.py build
$ python setup.py install

Another way is to install the modules on Debian-flavoured Linuxes with apt:

sudo apt-get install python-crypto
sudo apt-get install python-paramiko

Check if the modules have been installed successfully:

$ python
>>> import Crypto
>>> import paramiko

There should be no error messages when you import the modules.