Unable to find "D:\python\DLLs*.dll" when adding binary and data files.
时间: 2024-06-04 22:08:11 浏览: 260
This error message indicates that the file path you specified is incorrect or the files you are trying to add do not exist in the specified directory.
Double-check the file path you provided and make sure that it is correct. If you are not sure about the file path, you can try navigating to the directory manually and verifying that the files are present.
Also, ensure that you have the necessary permissions to access the files and the directory.
If the issue persists, try moving the files to a different directory and specifying the new file path when adding them.
相关问题
2380 INFO: Appending 'binaries' from .spec Unable to find "C:\Python37\DLLs\*.dll" when adding binary and data files.
这个错误通常是由于在 PyInstaller 打包时未正确指定依赖项引起的。可以尝试以下步骤:
1. 确保所有依赖库都已正确安装并可用。
2. 在 PyInstaller 命令中添加 `--debug all` 选项,以获取更详细的错误信息。
3. 检查您的代码中是否使用了相对路径,如果是,则需要修改成绝对路径。
4. 尝试使用 `--add-binary` 选项将缺失的 DLL 文件手动添加到 PyInstaller 打包中。
如果以上步骤都无法解决问题,请提供更多关于您的环境和代码的信息,以便我们更好地帮助您解决问题。
pyinstaller: error: argument --add-binary: invalid add_data_or_binary value: 'D:\\python\\DLLs*.dll'
这个错误通常是因为您在使用`--add-binary`参数时提供了无效的路径或格式。`--add-binary`参数期望的值应该是一个包含源路径和目标路径的元组,它们之间用逗号分隔,并且目标路径应该是相对于您的打包后的应用程序根目录的路径。
请确认您提供的路径是否正确,并且格式是否正确。如果您希望添加多个文件,可以使用通配符或多次使用`--add-binary`参数。
例如,假设您要添加`D:\python\DLLs`目录下的所有`.dll`文件,您可以使用以下命令:
```
pyinstaller --add-binary "D:\python\DLLs\*.dll;DLLs" your_script.py
```
这将把所有`.dll`文件添加到打包后的应用程序的`DLLs`目录中。
阅读全文