Skip to content

Latest commit

 

History

History
20 lines (15 loc) · 688 Bytes

install-the-python-client.md

File metadata and controls

20 lines (15 loc) · 688 Bytes
description
How to install the TerminusDB Python Client to work with TerminusDB and TerminusCMS in Python

Install the Python Client

It is recommended that you install the TerminusDB Python client (which works with Python >= 3.7) in a separate Python environment. In the example, we use venv which comes with the standard installation of Python 3. First, we create the new environment:

$ python3 -m venv ~/.virtualenvs/terminusdb
$ source ~/.virtualenvs/terminusdb/bin/activate

Then we can install using pip:

$ python3 -m pip install terminusdb-client