Getting Started#
Installation#
Clone the repository
$ git clone https://github.com/t-ded/algpy.git $ cd algpy
(Optional but strongly recommended) Set up virtual environment
Using `venv`:
$ python -m venv venv # Alternatively, use python3 $ source venv/bin/activate # On Windows use `venv\Scripts\activate`
Using `conda`:
$ conda create --name algpy python=3.x # Replace `3.x` with your desired Python version, preferably 3.12 $ conda activate algpy
Install dependencies
$ (venv) pip install -r algpy_src/requirements.txt
Run tests
$ (venv) pytest