Installation
Here, we provide the required steps in order to install TMLL on your machine.
Install from PyPI
pip3 install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple tmllInstall from the Source Code
# Clone TMLL from Git
git clone https://github.com/eclipse-tracecompass/tmll.git
cd tmll
# Clone its submodule(s)
git submodule update --init
# Create a virtual environment (if haven't already)
python3 -m venv venv
source venv/bin/activate # If Linux or MacOS
.\venv\Scripts\activate # If Windows
# Install the required dependencies
(venv) pip3 install -r requirements.txtLast updated