やってみる

アウトプットすべく己を導くためのブログ。その試行錯誤すらたれ流す。

PyGame Utilitiesなるものを発見

略してPGU。日本語情報がゼロ。

参考

pygamewikipediaにて発見。便利ツールらしい。GUIが欲しかった。ただ、日本語情報がゼロ。使えるのか?

pip

$ pip install pgu
Collecting pgu
  Could not find a version that satisfies the requirement pgu (from versions: )
No matching distribution found for pgu
$ pip install pygame-utilities
Collecting pygame-utilities
  Could not find a version that satisfies the requirement pygame-utilities (from versions: )
No matching distribution found for pygame-utilities

apt-get

$ sudo apt-get install pygame-utilities
パッケージリストを読み込んでいます... 完了
依存関係ツリーを作成しています                
状態情報を読み取っています... 完了
E: パッケージ pygame-utilities が見つかりません

git clone

git clone https://github.com/parogers/pgu
$ git clone https://github.com/parogers/pgu
Cloning into 'pgu'...
remote: Counting objects: 737, done.
remote: Total 737 (delta 0), reused 0 (delta 0), pack-reused 737
Receiving objects: 100% (737/737), 347.91 KiB | 309.00 KiB/s, done.
Resolving deltas: 100% (405/405), done.
Checking connectivity... done.

インストール。

$ python setup.py install
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/pgu
copying pgu/algo.py -> build/lib/pgu
copying pgu/__init__.py -> build/lib/pgu
copying pgu/timer.py -> build/lib/pgu
copying pgu/ani.py -> build/lib/pgu
copying pgu/fonts.py -> build/lib/pgu
copying pgu/html.py -> build/lib/pgu
copying pgu/text.py -> build/lib/pgu
copying pgu/engine.py -> build/lib/pgu
copying pgu/layout.py -> build/lib/pgu
copying pgu/tilevid.py -> build/lib/pgu
copying pgu/vid.py -> build/lib/pgu
copying pgu/hexvid.py -> build/lib/pgu
copying pgu/high.py -> build/lib/pgu
copying pgu/isovid.py -> build/lib/pgu
creating build/lib/pgu/gui
copying pgu/gui/style.py -> build/lib/pgu/gui
copying pgu/gui/app.py -> build/lib/pgu/gui
copying pgu/gui/errors.py -> build/lib/pgu/gui
copying pgu/gui/dialog.py -> build/lib/pgu/gui
copying pgu/gui/basic.py -> build/lib/pgu/gui
copying pgu/gui/pguglobals.py -> build/lib/pgu/gui
copying pgu/gui/surface.py -> build/lib/pgu/gui
copying pgu/gui/container.py -> build/lib/pgu/gui
copying pgu/gui/document.py -> build/lib/pgu/gui
copying pgu/gui/__init__.py -> build/lib/pgu/gui
copying pgu/gui/theme.py -> build/lib/pgu/gui
copying pgu/gui/button.py -> build/lib/pgu/gui
copying pgu/gui/const.py -> build/lib/pgu/gui
copying pgu/gui/form.py -> build/lib/pgu/gui
copying pgu/gui/select.py -> build/lib/pgu/gui
copying pgu/gui/menus.py -> build/lib/pgu/gui
copying pgu/gui/keysym.py -> build/lib/pgu/gui
copying pgu/gui/textarea.py -> build/lib/pgu/gui
copying pgu/gui/input.py -> build/lib/pgu/gui
copying pgu/gui/table.py -> build/lib/pgu/gui
copying pgu/gui/slider.py -> build/lib/pgu/gui
copying pgu/gui/layout.py -> build/lib/pgu/gui
copying pgu/gui/area.py -> build/lib/pgu/gui
copying pgu/gui/deprecated.py -> build/lib/pgu/gui
copying pgu/gui/widget.py -> build/lib/pgu/gui
copying pgu/gui/group.py -> build/lib/pgu/gui
copying pgu/gui/misc.py -> build/lib/pgu/gui
running build_scripts
creating build/scripts-3.6
copying and adjusting scripts/tileedit -> build/scripts-3.6
copying and adjusting scripts/leveledit -> build/scripts-3.6
copying and adjusting scripts/tganew -> build/scripts-3.6
copying and adjusting scripts/levelfancy -> build/scripts-3.6
changing mode of build/scripts-3.6/tileedit from 644 to 755
changing mode of build/scripts-3.6/leveledit from 644 to 755
changing mode of build/scripts-3.6/tganew from 644 to 755
changing mode of build/scripts-3.6/levelfancy from 644 to 755
running install_lib
creating /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/algo.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/__init__.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/timer.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/ani.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/fonts.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/html.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/text.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/engine.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/layout.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/tilevid.py -> /.../game/lib/python3.6/site-packages/pgu
creating /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/style.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/app.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/errors.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/dialog.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/basic.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/pguglobals.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/surface.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/container.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/document.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/__init__.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/theme.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/button.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/const.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/form.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/select.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/menus.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/keysym.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/textarea.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/input.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/table.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/slider.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/layout.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/area.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/deprecated.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/widget.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/group.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/gui/misc.py -> /.../game/lib/python3.6/site-packages/pgu/gui
copying build/lib/pgu/vid.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/hexvid.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/high.py -> /.../game/lib/python3.6/site-packages/pgu
copying build/lib/pgu/isovid.py -> /.../game/lib/python3.6/site-packages/pgu
byte-compiling /.../game/lib/python3.6/site-packages/pgu/algo.py to algo.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/__init__.py to __init__.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/timer.py to timer.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/ani.py to ani.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/fonts.py to fonts.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/html.py to html.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/text.py to text.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/engine.py to engine.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/layout.py to layout.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/tilevid.py to tilevid.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/style.py to style.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/app.py to app.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/errors.py to errors.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/dialog.py to dialog.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/basic.py to basic.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/pguglobals.py to pguglobals.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/surface.py to surface.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/container.py to container.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/document.py to document.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/__init__.py to __init__.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/theme.py to theme.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/button.py to button.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/const.py to const.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/form.py to form.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/select.py to select.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/menus.py to menus.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/keysym.py to keysym.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/textarea.py to textarea.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/input.py to input.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/table.py to table.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/slider.py to slider.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/layout.py to layout.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/area.py to area.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/deprecated.py to deprecated.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/widget.py to widget.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/group.py to group.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/gui/misc.py to misc.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/vid.py to vid.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/hexvid.py to hexvid.cpython-36.pyc
  File "/.../game/lib/python3.6/site-packages/pgu/hexvid.py", line 50
    print self.bounds
             ^
SyntaxError: Missing parentheses in call to 'print'

byte-compiling /.../game/lib/python3.6/site-packages/pgu/high.py to high.cpython-36.pyc
byte-compiling /.../game/lib/python3.6/site-packages/pgu/isovid.py to isovid.cpython-36.pyc
running install_scripts
copying build/scripts-3.6/tganew -> /.../game/bin
copying build/scripts-3.6/leveledit -> /.../game/bin
copying build/scripts-3.6/levelfancy -> /.../game/bin
copying build/scripts-3.6/tileedit -> /.../game/bin
changing mode of /.../game/bin/tganew to 755
changing mode of /.../game/bin/leveledit to 755
changing mode of /.../game/bin/levelfancy to 755
changing mode of /.../game/bin/tileedit to 755
running install_data
creating /.../game/share
creating /.../game/share/pgu
creating /.../game/share/pgu/themes
creating /.../game/share/pgu/themes/default
copying data/themes/default/list.png -> /.../game/share/pgu/themes/default
copying data/themes/default/up.png -> /.../game/share/pgu/themes/default
copying data/themes/default/progressbar.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/idot.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/check.png -> /.../game/share/pgu/themes/default
copying data/themes/default/menu.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/dialog.close.down.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/slider.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/vslider.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/box.down.png -> /.../game/share/pgu/themes/default
copying data/themes/default/select.option.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/select.arrow.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/select.selected.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/select.selected.down.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/vslider.bar.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/select.arrow.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/console.png -> /.../game/share/pgu/themes/default
copying data/themes/default/hslider.right.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/checkbox.off.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/console.input.focus.png -> /.../game/share/pgu/themes/default
copying data/themes/default/dialog.close.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/left.png -> /.../game/share/pgu/themes/default
copying data/themes/default/vbox.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/menu.down.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/box.xcf -> /.../game/share/pgu/themes/default
copying data/themes/default/select.options.png -> /.../game/share/pgu/themes/default
copying data/themes/default/menu.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/checkbox.off.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/vdot.hover.png -> /.../game/share/pgu/themes/default
copying data/themes/default/box.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/x.png -> /.../game/share/pgu/themes/default
copying data/themes/default/rdot.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/hslider.bar.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/list.item.hover.png -> /.../game/share/pgu/themes/default
copying data/themes/default/list.item.down.png -> /.../game/share/pgu/themes/default
copying data/themes/default/desktop.png -> /.../game/share/pgu/themes/default
copying data/themes/default/desktop.xcf -> /.../game/share/pgu/themes/default
copying data/themes/default/button.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/rdot.hover.png -> /.../game/share/pgu/themes/default
copying data/themes/default/vdot.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/radio.off.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/select.selected.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/console.input.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/vdot.down.png -> /.../game/share/pgu/themes/default
copying data/themes/default/hslider.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/radio.on.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/dialog.close.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/tool.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/radio.png -> /.../game/share/pgu/themes/default
copying data/themes/default/out.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/down.png -> /.../game/share/pgu/themes/default
copying data/themes/default/Vera.ttf -> /.../game/share/pgu/themes/default
copying data/themes/default/scroller.slide.bar.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/listitem.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/hslider.left.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/dialog.bar.png -> /.../game/share/pgu/themes/default
copying data/themes/default/checkbox.on.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/listitem.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/dot.xcf -> /.../game/share/pgu/themes/default
copying data/themes/default/vslider.down.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/slider.bar.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/button.down.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/radio.on.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/vslider.bar.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/dot.hover.png -> /.../game/share/pgu/themes/default
copying data/themes/default/right.png -> /.../game/share/pgu/themes/default
copying data/themes/default/sbox.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/vsbox.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/hslider.bar.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/input.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/tool.down.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/scroller.slide.v.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/style.ini -> /.../game/share/pgu/themes/default
copying data/themes/default/scroller.slide.bar.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/box.hover.png -> /.../game/share/pgu/themes/default
copying data/themes/default/tool.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/rdot.down.png -> /.../game/share/pgu/themes/default
copying data/themes/default/list.item.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/dot.normal.png -> /.../game/share/pgu/themes/default
copying data/themes/default/slider.bar.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/select.option.hover.png -> /.../game/share/pgu/themes/default
copying data/themes/default/scroller.slide.h.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/progressbar.bar.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/filebrowser.folder.png -> /.../game/share/pgu/themes/default
copying data/themes/default/dialog.png -> /.../game/share/pgu/themes/default
copying data/themes/default/radio.off.normal.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/select.arrow.down.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/checkbox.on.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/button.hover.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/dot.down.png -> /.../game/share/pgu/themes/default
copying data/themes/default/notes.txt -> /.../game/share/pgu/themes/default
copying data/themes/default/vslider.up.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/select.arrow.png -> /.../game/share/pgu/themes/default
copying data/themes/default/listitem.down.tga -> /.../game/share/pgu/themes/default
copying data/themes/default/generate.py -> /.../game/share/pgu/themes/default
copying data/themes/default/input.focus.png -> /.../game/share/pgu/themes/default
creating /.../game/share/pgu/themes/gray
copying data/themes/gray/list.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/menu.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/menu.option.hover.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/box.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/select.option.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/dialog.close.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/checkbox.off.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/console.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/console.input.focus.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/menu.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/hslider.left.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/menu.option.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/select.options.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/button.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/dialog.close.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/box.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/desktop.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/vslider.up.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/select.arrow.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/console.input.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/tool.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/Vera.ttf -> /.../game/share/pgu/themes/gray
copying data/themes/gray/dialog.bar.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/radio.off.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/select.arrow.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/hslider.right.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/slider.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/select.selected.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/radio.off.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/menu.hover.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/input.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/style.ini -> /.../game/share/pgu/themes/gray
copying data/themes/gray/radio.on.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/checkbox.off.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/list.item.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/button.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/checkbox.on.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/tool.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/vslider.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/filebrowser.folder.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/dialog.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/slider.bar.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/radio.on.normal.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/select.arrow.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/checkbox.on.down.png -> /.../game/share/pgu/themes/gray
copying data/themes/gray/input.focus.png -> /.../game/share/pgu/themes/gray
creating /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.line.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.pixel.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.tile.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.code.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.fill.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.draw.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.select.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.eraser.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/config.txt -> /.../game/share/pgu/themes/tools
copying data/themes/tools/icons48.bkgr.tga -> /.../game/share/pgu/themes/tools
copying data/themes/tools/convertconfig.py -> /.../game/share/pgu/themes/tools
running install_egg_info
Writing /.../game/lib/python3.6/site-packages/pgu-0.18-py3.6.egg-info

所感

インストールはできたと思われる。使えるのか?