Skip to content

Installation

Prerequisites

Before installing siapy library, ensure you have the following prerequisites:

  • Python 3.10 or higher
  • pip (Python package installer) or any other installer (e.g. pdm, uv, poetry)

Installation

Installation is as simple as:

pip install siapy

Alternative Installation Methods

Python package and dependency managers

You can also install siapy using other popular Python package and dependency managers:

  • PDM:
pdm add siapy
  • Poetry:
poetry add siapy
  • uv:
uv add siapy

Manually

If you prefer to install from the source, you can clone the repository and install it manually:

git clone https://github.com/siapy/siapy-lib.git
cd siapy
make install

Verify Installation

To verify that siapy has been installed correctly, you can run:

python -c "import siapy; print(siapy.__version__)"

Troubleshooting

If you encounter any issues during installation, consider the following solutions:

  • Ensure that you have the correct version of Python installed.
  • Check for any missing dependencies and install them manually.
  • Upgrade pip to the latest version:
pip install --upgrade pip

For further assistance, please refer to the documentation or open an issue on GitHub.