Mat Kelly

Results 550 comments of Mat Kelly

@kanihal Thanks for the suggestion, `/opt/` is likely the most appropriate location. Regarding your question, we did a revamp of [WAIL in Electron](https://github.com/n0tan3rd/wail) that is available for macOS, Windows, and...

There are a couple of outstanding issues that need to be resolved that are preventing the generation of a build for Linux. In using Ubuntu 18.10, `pip install wxPython` produces...

After manually installing wxPython from source (using the package's `python build.py dox --nodoc sip build`, installing Pyinstaller via (and needing to manually reference the binary's path due to pip not...

A more fundamental example that should probably be resolved first: **wxTest.py** ```py import wx print('hello') ``` ...then build the py file with pyinstaller: `~/.local/bin/pyinstaller wxTest.py --onefile --clean` ...then try running...

https://groups.google.com/forum/#!searchin/wxpython-users/pip$20ubuntu%7Csort:date/wxpython-users/HeI3SK2kXws/489LCruzCwAJ may be a lead in resolving the shared library objects warning. This will require recompilation of wxPython. EDIT: It appears that the `--enabled-shared` flag is for when the Python...

Per https://wxpython.org/pages/downloads/, `pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-18.10 wxPython` should work on _my_ setup but the wxPython installation process is dependent on which flavor of Linux it is being built. This...

After building wxPython , building WAIL, and running the binary, a shared object issue still arises at the time of binary execution. ``` $ ./dist/WAIL User likely has the binary...

`sudo apt install libsdl2-2.0` installs some form of the library but pyinstaller seems to want libsdl-1.2, which is obsolete. I may need to circle back install wxPython for my current...

Per https://github.com/wxWidgets/Phoenix/issues/991, `sudo apt install libsdl1.2debian` and `python bundledApps/WAIL.py`: ``` $ python bundledApps/WAIL.py User likely has the binary in the wrong location. Traceback (most recent call last): File "bundledApps/WAIL.py", line...

@ibnesayeed We talked about this in-person but I figured I would ask you in a ticket to document efforts. Is there a way (alignment aside #396) to make the Linux...