使用pyinstaller打包exe的时候遇到这个错误:

PyInstaller cannot check for assembly dependencies.
Please install pywin32-ctypes.

pip install pywin32-ctypes

按照上面的提示,执行安装pywin32-ctypes但会提示已经安装:
Requirement already satisfied: pywin32 in d:\program files (x86)\anaconda3\lib\site-packages (227)
PyInstaller cannot check for assembly dependencies. Please install pywin32-ctypes. 解决方法
在Google检索这个问题发现了这个帖子,按照上面说的解决了。
帖子地址:
https://stackoverflow.com/questions/59638691/pyinstaller-cannot-check-for-assembly-dependencies
PyInstaller cannot check for assembly dependencies. Please install pywin32-ctypes. 解决方法

按照提示,先执行这个命令:

pip install cffi

再执行:

pip install pywin32

PyInstaller cannot check for assembly dependencies. Please install pywin32-ctypes. 解决方法

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-17
  • 2021-10-01
  • 2021-09-14
  • 2021-08-05
猜你喜欢
  • 2022-01-02
  • 2021-04-28
  • 2022-12-23
  • 2021-08-13
  • 2021-05-22
  • 2021-11-20
  • 2022-12-23
相关资源
相似解决方案