niess / python-appimage

AppImage distributions of Python
https://python-appimage.readthedocs.io/en/latest/
GNU General Public License v3.0
172 stars 24 forks source link

tk and tcl path #15

Closed mortenee closed 4 years ago

mortenee commented 4 years ago

After updating to a newer release my tkinter app no longer worked. Fixed it by changing these lines in AppRun: export TCL_LIBRARY="${APPDIR}/usr/share/tcltk/tcltcl-version" export TK_LIBRARY="${APPDIR}/usr/share/tcltk/tktk-version" to this: export TCL_LIBRARY="${APPDIR}/usr/share/tcltk/tcl8.5" export TK_LIBRARY="${APPDIR}/usr/share/tcltk/tk8.5"

Tested with python3.8.2-cp38-cp38-manylinux2014_x86_64.AppImage

Everything else works great. Thanks a lot for doing this :)

niess commented 4 years ago

@mortenee Thank you for reporting this bug. It should be patched now with the current release. Sorry, about this. I started some modifications and apparently I stopped in the middle :(

I would definitively need some test suite.

mortenee commented 4 years ago

Works now :)