Prerequisites
Before you install Galamo, please ensure you have a modern version of Python (3.8+ recommended) and `pip` installed.
python --version
pip --version
Standard Installation
The recommended way to install Galamo is from PyPI. This will handle all dependencies automatically. Use the `--upgrade` flag to get the latest version.
pip install galamo --upgrade
Developer Installation
If you want to contribute to the project, clone the repository and install it in editable mode.
git clone https://github.com/galamo-org/galamo.git
cd galamo
pip install -e .
Verify Installation
Check that Galamo was installed correctly by importing it in Python and printing the version.
import galamo
print(galamo.__version__)