The same process for installing Python modules from source code is also followed for installing pymembase. You download the package, unzip it, then build and install it.
Download couchbase-python-client-0.5.tar.gz
Unzip the compressed file and move into the folder.
$ tar -xf couchbase-python-client-0.5.tar.gz $ cd couchbase-python-client-0.5
Build and install the module. Build first is recommended to check for any errors or problems, but doing install also builds for you. You will need root/administrator rights to complete the install step.
$ python setup.py build $ python setup.py install