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
Create a Conda environment with Python 3.12 or newer (if not already set up)
conda create --name venv python=3.12
Activate the environment
conda activate venv
Ensure that pip is installed (it should be by default)
conda install pip && pip --version
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
To verify that pylit was installed correctly, you can run
pip show pylit
When you’re done working, deactivate the environment
conda deactivate