Installation

Install cvpal using pip to get started with computer vision dataset management and synthetic image generation.

Prerequisites

Before installing cvpal, make sure you have Python 3.8 or higher installed on your system.

Install from PyPI

The easiest way to install cvpal is using pip:

bash
pip install cvpal

Install from Source

If you want to install the latest development version or contribute to the project:

bash
git clone https://github.com/muhamed555/cvpal.git
cd cvpal
pip install -e .

Verify Installation

To verify that cvpal is installed correctly, run the following command:

bash
python -c "import cvpal; print('cvpal installed successfully!')"

Dependencies

cvpal automatically installs the following dependencies:

numpy

For numerical operations

opencv-python

For image processing

pillow

For image manipulation

pyyaml

For YAML configuration files

Next Steps

Once you have cvpal installed, check out the Quickstart guide to begin using cvpal for your computer vision projects.