Installation instructions ========================= The simplest way to install the |apyt| is via the official PyPI repository: .. code-block:: bash pip3 install apyt This command automatically installs all required dependencies. After installation, you can verify the setup and test the package using the included example dataset by following the :doc:`example usage ` section. .. note:: It is recommended to create a Python virtual environment before installing APyT. This ensures that dependencies are isolated from your system Python installation and prevents potential version conflicts with other packages. You can create and activate a virtual environment as follows: **On Linux / macOS:** .. code-block:: bash python3 -m venv --prompt APyT apyt-env source apyt-env/bin/activate **On Windows (Command Prompt):** .. code-block:: bat python -m venv --prompt APyT apyt-env apyt-env\Scripts\activate .. attention:: Do **not** install Python from the Microsoft Store. There are known |ms_issues| related to sandboxing, particularly the redirection of ``AppData``, which may interfere with the :ref:`configuration file location ` of the APyT package. Instead, install Python on Microsoft Windows using the official |python| installer. .. |apyt| raw:: html APyT package .. |ms_issues| raw:: html issues .. |python| raw:: html Python .. sectionauthor:: Sebastian M. Eich