温馨提示×

debian gimp插件怎么装

小樊
36
2026-09-13 19:46:47
栏目: 智能运维

在 Debian 上安装 GIMP 插件(通常指脚本、滤镜或扩展)有几种常见方式,下面按最常用 → 进阶给你说明。


一、通过 apt 安装官方插件(最简单)

Debian 仓库里已经有一些 GIMP 插件包,直接用 apt 装:

sudo apt update
sudo apt install gimp gimp-plugin-registry

常用插件包还有:

sudo apt install gimp-python
sudo apt install gimp-data-extras
sudo apt install gimp-texturize
sudo apt install gimp-gmic

安装后重启 GIMP即可在菜单里看到。


二、手动安装插件(脚本 / .py / .scm)

1️⃣ 插件目录位置

用户级(推荐):

~/.config/GIMP/2.10/plug-ins/

系统级(所有用户):

/usr/lib/gimp/2.0/plug-ins/

版本号可能是 2.10,看你 GIMP 版本

2️⃣ 安装 Python 插件(.py)

mkdir -p ~/.config/GIMP/2.10/plug-ins
cp your_plugin.py ~/.config/GIMP/2.10/plug-ins/
chmod +x ~/.config/GIMP/2.10/plug-ins/your_plugin.py

要求:

  • 文件头部有 #!/usr/bin/env python3
  • 安装了 gimp-python

3️⃣ 安装 Script-Fu 插件(.scm)

mkdir -p ~/.config/GIMP/2.10/scripts
cp your_script.scm ~/.config/GIMP/2.10/scripts/

重启 GIMP 后会在菜单中出现。


三、安装 G’MIC(非常推荐)

G’MIC 是功能极强的滤镜合集:

sudo apt install gimp-gmic

重启 GIMP → 菜单:

Filters → G'MIC-Qt

四、常见问题排查

❌ 插件不显示

  • 没重启 GIMP
  • 权限不对(没 chmod +x
  • Python 插件但没装 gimp-python

查看错误:

Help → Plug-in Browser

或终端启动 GIMP 看报错:

gimp

五、你具体想装哪种插件?

可以告诉我:

  • 插件名字(如 BIMP、Resynthesizer)
  • .py / .scm / .deb
  • GIMP 版本(gimp --version

我可以给你精确安装步骤

0