InstallationΒΆ

DTCC Platform can be installed using pip.

To install from the Python Package Index (PyPI):

$ pip install dtcc

To install from the source directory:

$ pip install .

Note

For reliable installation and to avoid conflicts with your system Python, please create and activate a virtual environment before running any pip install commands. This approach is now required by modern packaging standards (see PEP 668).

For example, on Unix systems you can run:

$ python -m venv .venv
$ source .venv/bin/activate
$ pip install dtcc

On Windows, activate the environment with:

> python -m venv .venv
> .venv\Scripts\activate
> pip install dtcc