# Installing Comyx

Comyx is written in pure Python, and is compatible with Python 3.11 and above. It is tested on Linux (Ubuntu 22.04), however it should work on any platform without any issues.
Use the following instructions to install a binary package with `pip` or build `comyx` from source.

## Installing with `pip`

The easiest way to install Comyx is with `pip`:

```bash
pip install comyx
```

## Building from source (editable)

To build Comyx from source, clone the repository and run the following commands:

```bash
git clone https://github.com/muhd-umer/comyx.git
cd comyx

# editable install
pip install -e .
```