Replies: 2 comments
-
response by Illu in the discord channel: |
Beta Was this translation helpful? Give feedback.
0 replies
-
Create a bug report on the Nuitka library or ask on their discord server, that seems a 3rd party lib problem, on their side |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to compile my codes into a .exe file. After attempting with pyinstaller (and failed because I have to use Fiona and geopandas which both have compatibility issues with pyinstaller but that is another story) and reading this post https://github.com/hoffstadt/DearPyGui/discussions/1589, I went to try Nuitka. However, the following error occurred:
Nuitka:INFO: Completed Python level compilation and optimization.
Nuitka:INFO: Generating source code for C backend compiler.
Nuitka:INFO: Running data composer tool for optimal constant value handling.
Nuitka:INFO: Running C compilation via Scons.
Nuitka-Scons:INFO: Backend C compiler: gcc (gcc).
Nuitka-Scons:INFO: Backend linking program (no progress information available).
Nuitka-Scons:INFO: Running 'C:\Users\UDPC\AppData\Local\Nuitka\Nuitka\gcc\x86_64\11.2.0-12.0.1-9.0.0-r1\mingw64\bin\gcc.exe -o "E:\DOCUME
1\phd\GPM_VA1\Data\nehalem\GUI~1.DIS\GUI.exe" -fuse-linker-plugin -flto=8 -fpartial-inlining -freorder-functions -Wl,--exclude-all-symbols -Wl,--out-implib,.\import.lib -municode -O3 -Wl,--stack,9863168 -Wl,--enable-auto-import -s -static-libgcc @".\@link_input.txt" -LC:\Users\UDPC\.conda\envs\research1\libs -lm -lpython310' took 7012.80 secondsNuitka-Scons:INFO: Compiled 1729 C files using ccache.
Nuitka-Scons:INFO: Cached C files (using ccache) with result 'cache hit': 1725
Nuitka-Scons:INFO: Cached C files (using ccache) with result 'cache miss': 4
Nuitka-Plugins:INFO: pyqt5: Including Qt plugins 'iconengines,imageformats,mediaservice,platforms,platformthemes,printsupport,styles' below 'PyQt5\qt-plugins'.
Nuitka-Plugins:INFO: numpy: Found 1 file DLLs from numpy installation.
Nuitka-Plugins:INFO: dll-files: Found 1 file DLLs from shapely.geos installation.
Nuitka-Plugins:INFO: data-files: Included data file 'certifi\cacert.pem' due to package data for 'certifi'.
Nuitka-Plugins:INFO: data-files: Included data dir 'jsonschema\schemas' with 7 files due to: package data directory for 'jsonschema'.
Nuitka-Plugins:INFO: data-files: Included data file 'lib2to3\Grammar3.10.4.final.0.pickle' due to package data for 'lib2to3.pgen2'.
Nuitka-Plugins:INFO: data-files: Included data file 'lib2to3\PatternGrammar3.10.4.final.0.pickle' due to package data for 'lib2to3.pgen2'.
Nuitka-Plugins:INFO: matplotlib: Included data dir 'matplotlib\mpl-data' with 183 files due to: package data for 'matplotlib.
Nuitka-Plugins:INFO: matplotlib: Included data file 'matplotlib\mpl-data\matplotlibrc' due to Updated matplotlib config file with backend to use..
Nuitka-Plugins:INFO: data-files: Included data dir 'osgeo\data' with 97 files due to: package data directory for 'osgeo'.
Nuitka-Plugins:INFO: data-files: Included data dir 'pytz\zoneinfo' with 600 files due to: package data directory for 'pytz'.
FATAL: tk-inter: Could not find Tcl, you might need to set 'TCL_LIBRARY' and if that works, report a bug.
Any suggestions on how to fix this?
Beta Was this translation helpful? Give feedback.
All reactions