> For the complete documentation index, see [llms.txt](https://ibl.gitbook.io/ibl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ibl.gitbook.io/ibl/installation.md).

# Installation

### Windows 10:

Assuming you have python 3.7+ and pip installed:

```
pip install ibl
```

## REPL.IT

<https://repl.it> is a great website to test code. To use it, put the three following lines at the top of your script:

```
import os
os.system('pip install ibl')
import ibl
```

### Linux (Ubuntu + Debian)

Assuming you have Python 3.7+ and pip3 installed:

```
sudo pip3 install ibl
```
