Search:

Search all manuals
Search this manual
Manual
Membase and Python Development Tutorial
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
Membase and Python Development Tutorial
Chapter Sections
Chapters

3. Installation

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.

  1. Download couchbase-python-client-0.5.tar.gz

  2. Unzip the compressed file and move into the folder.

    $ tar -xf couchbase-python-client-0.5.tar.gz
    $ cd couchbase-python-client-0.5
  3. 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