I\'m trying to use pyInstaller to package a wxpython application. I looking for a variation of the \"one-folder\" mode whereby the dlls and pyds are not stored in the top-level
another way, new loadmyapp.c:
#include main(int argc,char *argv[]) { execv("yourapp/app.exe", argv); }
gcc -o loadmyapp loadmyapp.c
./loadmyapp