Skip to content

Latest commit

 

History

History
50 lines (27 loc) · 1.15 KB

install.rst

File metadata and controls

50 lines (27 loc) · 1.15 KB

Installation

GrapheekDB is a Python package which is published on PyPI - the Python Package Index.

The simplest way to install it is to use pip, a tool for installing and managing Python packages:

pip install grapheekdb

Or download the archive on PyPI, extract and install it manually with:

python setup.py install

Or checkout Mercurial repository :

hg clone https://bitbucket.org/nidusfr/grapheekdb

Cloning the repository will give you source, examples and documentation.

More on Requirements

GrapheekDB uses:

Python 2.7
zeromq

It has optionnal dependencies (installation depends on your system), those are the packages that may be installed on Ubuntu :

libkyotocabinet-dev
libkyotocabinet16

When you install GrapheekDB, the latest versions of the required Python dependencies will be pulled out for you.

If you cloned the repository, you can also install them manually using the requirements.txt file that is provided (this will install some optionnal dependencies)

pip install -r requirements.txt