pipenv shell中提示PyInstaller cannot check for assembly dependencies. Please install pywin32-ctypes. pip install pywin32-ctypes
时间: 2024-02-03 08:03:40 浏览: 130
完美解决pyinstaller打包报错找不到依赖pypiwin32或pywin32-ctypes的错误
这是因为 PyInstaller 需要使用 pywin32-ctypes 模块来检查程序依赖项。您可以使用以下命令安装该模块:
```
pip install pywin32-ctypes
```
安装完成后,再次尝试运行 PyInstaller 即可。
阅读全文