python-3.x 7687信息:额外的DLL搜索目录(路径):在pyinstaller中卡在这一部分,有什么解决方案?

yc0p9oo0  于 2022-12-01  发布在  Python
关注(0)|答案(1)|浏览(391)

[

how to solve it, i've been trying for days

](https://i.stack.imgur.com/gOSQ6.jpg)中的一个
enter image description here

how to solve it, i've been trying for days
f2uvfpb9

f2uvfpb91#

出现相同问题,pyinstaller停留在INFO: Extra DLL search directories (PATH)
通过在第233行修补Lib\site-packages\pyinstaller\isolated\_parent.py修复(参见github上的原始代码

try:
            self._child.wait(timeout=5)
        except subprocess.TimeoutExpired:
            self._child.kill()

由于某种原因,原始代码中的_child.wait()永远挂起。
可能是由于使用此处所述的.wait()时与PIPE发生死锁

相关问题