This project is a work in progress, prior to an official Apache Software Foundation release. Check back soon for important updates.
Please see our readthedocs.org pages for documentation.
A contribution guide has been provided here.
To install and set up the Python project, Distill uses Poetry, a dependency and package management tool. Poetry simplifies the management of project dependencies and virtual environments, ensuring consistent and reproducible builds.
Before you begin, make sure you have the following prerequisites installed on your system:
- Python (>= 3.8)
- Poetry (>= 1.0)
You can check your Python version by running:
python --version
This will return the version of Python installed on your system. If you do not have Python installed, you can download it from the official website. However, we recommend using a Python version manager such as pyenv. You can refer to this guide for setting it up: pyenv guide.
You can install Poetry a number of ways (see the Poetry docs for all methods). We recommend installing one of the following two ways:
Official Installer:
Linux, macOS, Windows (WSL)
curl -sSL https://install.python-poetry.org | python3 -
Windows (Powershell)
(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py -
pipx:
pipx install poetry
The above two methods should minimize the chances of dependency conflicts with your system Python (global) installation. Some users have reported issues with Poetry using an incorrect Python environment instead of the project's local virtual environment when using regular pip method. If you run into issues, please refer to the official Poetry docs or Github for more in-depth installation instructions.
Follow these steps to set up and install the project:
Clone the repository:
git clone https://github.com/apache/flagon-distill.git
Navigate to the project directory:
cd flagon-distill
Use Poetry to install project dependencies and create a virtual environment:
poetry install
This command reads the
pyproject.toml
file and installs all required packages into a dedicated virtual environment.Activate the virtual environment:
poetry shell
You are now inside the project's virtual environment, which isolates the project's dependencies from your system-wide Python packages.
Run the tests:
You can now run the tests to make sure everything installed properly. For example:
make test
Remember that you need to activate the virtual environment (step 4) each time you work on the project.
To update project dependencies, you can use the following command:
poetry update
This command updates the pyproject.toml
file with the latest compatible versions of the packages.
To uninstall the project and its dependencies, simply deactivate the virtual environment (if activated) by typing:
exit
This will exit the virtual environment. You can then safely delete the project directory.
By following these installation steps, you can easily set up and manage the Python project using Poetry. Enjoy coding!