Replies: 2 comments
-
Add the location with those DLLs to |
Beta Was this translation helpful? Give feedback.
0 replies
-
Just in case someone finds this in the future. I tried doing that literally a dozen different ways and it didn't work. In the end, I just manually copied those files into the directory that pyinstaller was looking for them in C:\hostedtoolcache\windows\Python\3.11.9\x64\Lib\site-packages\PyQt6\Qt6\bin and that worked. |
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
-
My repo is at https://github.com/djotaku/ELDonationTracker/tree/qt6
The errors I'm getting are:
17450 INFO: Extra DLL search directories (AddDllDirectory): ['C:\hostedtoolcache\windows\Python\3.11.9\x64\Lib\site-packages\PyQt6\Qt6\bin']
17450 INFO: Extra DLL search directories (PATH): ['C:\hostedtoolcache\windows\Python\3.11.9\x64\Lib\site-packages\PyQt6\Qt6\bin']
18638 WARNING: Library not found: could not resolve 'avcodec-60.dll', dependency of 'C:\hostedtoolcache\windows\Python\3.11.9\x64\Lib\site-packages\PyQt6\Qt6\plugins\multimedia\ffmpegmediaplugin.dll'.
18638 WARNING: Library not found: could not resolve 'avformat-60.dll', dependency of 'C:\hostedtoolcache\windows\Python\3.11.9\x64\Lib\site-packages\PyQt6\Qt6\plugins\multimedia\ffmpegmediaplugin.dll'.
18638 WARNING: Library not found: could not resolve 'avutil-58.dll', dependency of 'C:\hostedtoolcache\windows\Python\3.11.9\x64\Lib\site-packages\PyQt6\Qt6\plugins\multimedia\ffmpegmediaplugin.dll'.
18638 WARNING: Library not found: could not resolve 'swscale-7.dll', dependency of 'C:\hostedtoolcache\windows\Python\3.11.9\x64\Lib\site-packages\PyQt6\Qt6\plugins\multimedia\ffmpegmediaplugin.dll'.
18638 WARNING: Library not found: could not resolve 'swresample-4.dll', dependency of 'C:\hostedtoolcache\windows\Python\3.11.9\x64\Lib\site-packages\PyQt6\Qt6\plugins\multimedia\ffmpegmediaplugin.dll'.
I have tried adding the ffmpeg directory in my repo where I have those DLLs to the --add-data and to the -p and it still doesn't find them. What do I need to do to get this to find the DLLs?
Thanks!
Beta Was this translation helpful? Give feedback.
All reactions