gimp-pythonを別途インストールすればOK。 手順 gimpを起動する メニュー Filters Script-FuはあるがPython-Fuがない 解決 sudo apt -y install gimp-python gimpを起動する メニュー Filters Python-Fu 以下のように入力する image = pdb.gimp_image_new(600,600,0); print image 表示を含めると以下のようになった。 GIMP 2.10.8 Python Console Python 2.7.16 (default, Oct 10 2019, 22:02:15) [GCC 8.3.0] >>> image = pdb.gimp_image_new(600,600,0); >>> print image <gimp.Image '[名称未設定]'> >>> h

