Search:

Search all manuals
Search this manual
Manual
Couchbase Client Library: Python 1.0
Community Wiki and Resources
Download Client Library
Python Client Library
SDK Forum
Additional Resources
Community Wiki
Community Forums
Couchbase SDKs
Parent Section
2 Tutorial
Chapter Sections
Chapters

2.2. Installation

The same process for installing Python modules from source code is also followed for installing the couchbase module. You download the package, unzip it, then build and install it.

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

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

    shell> tar -xf couchbase-python-client-0.6.tar.gz
    shell> cd couchbase-python-client-0.6
  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.

    shell> python setup.py build
    shell> python setup.py install