-
I have got warnings below:
The build has succeeded, anyway. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Those ctypes libraries are triggered by some line of code like Hidden imports not being found can be an indicator that PyInstaller can't see your dependencies because your environment is a mess which is definitely a problem. If you don't use those packages though, you can ignore them. |
Beta Was this translation helpful? Give feedback.
Those ctypes libraries are triggered by some line of code like
ctypes.CDLL("msvcrt")
but since that's a Windows only library, it'll be inside anif sys.platform == "windows"
block or something equivalent where they will be skipped at runtime but PyInstaller's dependency scanner is not smart enough to detect that their not ran on Linux. You can ignore those.Hidden imports not being found can be an indicator that PyInstaller can't see your dependencies because your environment is a mess which is definitely a problem. If you don't use those packages though, you can ignore them.