LinuxBeaver / LinuxBeaver

Welcome - I make third party GEGL filter plugins for Gimp.
30 stars 1 forks source link

Better Instructions for Linux Users. #7

Open scottonanski opened 10 months ago

scottonanski commented 10 months ago

I see a lot of people asking how to install these, so I'll just leave this here.

1. Downloading the Plugins

First, you need to download the GEGL plugins. from the link "Top twenty something GEGL Plugins for Linux and Source Code".

2. Installing Required Packages

Before you can use or compile the plugins, you need to have certain packages installed on your Linux system:

These can typically be installed via your distribution's package manager. For example, on Ubuntu, you can open a terminal and run:

sudo apt-get update
sudo apt-get install ninja-build meson libgegl-dev

3. Compiling the Plugins (If Required)

./build_linux.sh

Ensure that this script is executable. If not, make it executable by running chmod +x build_linux.sh.

4. Installing the Compiled Plugins

cp [source_path]/*.so /home/$(whoami)/.local/share/gegl-0.4/plug-ins/

5. Restart GIMP

After copying the files, restart GIMP. The new GEGL operations should now be available in GIMP.

If pre-compiled binaries (.so files) are provided, you can skip the compilation steps. Just copy these .so files directly to the /home/$(whoami)/.local/share/gegl-0.4/plug-ins/ directory and restart GIMP.

Michael-Z-Freeman commented 8 months ago

Thanks for that.

LinuxBeaver commented 8 months ago

Thank you I'll use this