slide-deck-ai / docs /installation.md
barunsaha's picture
Fix typos
d0edede
# 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:
```bash
pip install slidedeckai
```
You can verify the installation by checking the version of SlideDeck AI:
```python
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:
```bash
git clone https://github.com/barun-saha/slide-deck-ai/
cd slide-deck-ai
pip install -e .
```