Skip to content

Prerequisites installation and running

Jacek Ziółkowski edited this page Sep 15, 2024 · 9 revisions

Option 1 - running a pre-built binary

If you're on Windows or Mac, simply get the standalone executable from the releases page

Option 2 - install from pip

pip install tdmgr then, after installation is done, simply do tdmgr.py in console.

Be aware, that on modern Linuxes the system may prevent you from manually installing packages into the system-wide Python installation. In such case you need to use a virtualenv.

  1. install python-venv package for Python 3.8+ (refer to your OS documentation)

  2. in directory of your choice create a new virtualenv:

    python -m venv <venv_name>

  3. activate it (this might depend on your shell, but for most of them the following will work):

    source <venv_name>/bin/activate

  4. install TDM with pip and run like written above

Option 3 - run from sources

Create a Python3.8+ venv, activate it, and clone the repo. Then, install TDM: pip install .

Start TDM with tdmgr.py