Anaconda#

To include this package in your project using Anaconda, follow these steps:

1. Ensure that Anaconda or Miniconda is installed You can check with:

conda --version
  1. Create a Conda environment with Python 3.12 or newer (if not already set up)

conda create --name venv python=3.12
  1. Activate the environment

conda activate venv
  1. Ensure that pip is installed (it should be by default)

conda install pip && pip --version
  1. Use pip to install pylit directly from the GitHub repository

pip install git+https://github.com/phil-hofmann/pylit.git

(Optional) Install from a specific branch

pip install git+https://github.com/phil-hofmann/pylit.git@branch_name
  1. To verify that pylit was installed correctly, you can run

pip show pylit
  1. When you’re done working, deactivate the environment

conda deactivate