Install with Flatpak

TODO

Install with pip

Python wheel packages are automatically built by Gitlab’s CI.

The latest one can be downloaded here:

https://framagit.org/editide/releases/-/jobs/artifacts/main/browse/dist/?job=build-wheel

Then install it with:

python3 -m pip install *.whl

Install from sources

Clone and run

EdiTidE can be run directly from the sources.

Check where your Python user-site is located:

python3 -m site --user-site

Create the folder if it doesn’t exist, and from there clone the official git repository:

git clone https://framagit.org/editide/editide.git

Then follow the instructions from INSTALL.md to complete the setup.

System install

The system install uses meson as build system.

git clone --recurse-submodules https://framagit.org/editide/releases.git
cd releases/
meson setup --prefix=/usr _build
meson compile -C _build
meson install -C _build