cx_freeze 忽略 libcrypto-1_1.dll
时间: 2024-02-29 22:29:37 浏览: 146
libcrypto-1_1.dll
要忽略libcrypto-1_1.dll,请在setup.py文件中的“options”参数中添加以下内容:
```
options = {
'build_exe': {
'excludes': ['libcrypto-1_1.dll']
}
}
```
这将告诉cx_Freeze在构建EXE文件时忽略libcrypto-1_1.dll。您可以将其他要排除的DLL文件添加到“excludes”列表中。
阅读全文