slide-deck-ai / docs /installation.md
barunsaha's picture
Add API documentation
ba386e2
|
raw
history blame
597 Bytes

Installation

We recommend installing SlideDeck AI into a dedicated virtual environment.

Stable Release

To install the latest stable version of SlideDeck AI, run this command:

pip install slidedeckai

You can verify the installation by checking the version of SlideDeck AI:

import slidedeckai

print(slidedeckai.__version__)

Development Version

If you want to use the latest features or contribute, clone the repository and install it in editable mode:

git clone https://github.com/barun-saha/slide-deck-ai/
cd slidedeckai
pip install -e .