### Build and Install mlat-client Source: https://github.com/wiedehopf/mlat-client/blob/master/README.md This snippet details the steps to build and install the mlat-client within a Python virtual environment. It includes setting up the environment, installing dependencies like setuptools and pyasyncore, and then building and installing the package. ```Shell VENV=/usr/local/share/wiedehopf-mlat-client/venv rm -rf "$VENV" python3 -m venv "$VENV" source "$VENV/bin/activate" python3 -c "import setuptools" || python3 -m pip install setuptools python3 -c "import asyncore" || python3 -m pip install pyasyncore python3 setup.py build python3 setup.py install ``` -------------------------------- ### Run mlat-client Source: https://github.com/wiedehopf/mlat-client/blob/master/README.md This snippet shows how to invoke the installed mlat-client executable from its virtual environment. ```Shell /usr/local/share/wiedehopf-mlat-client/venv/bin/mlat-client ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.