File size: 599 Bytes
ba386e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d0edede
ba386e2
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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 .
```