在用PyInstaller编译后,是否仍然需要安装Python项目依赖项?

Are python project dependencies are still required to be installed after compilation with PyInstaller?(在用PyInstaller编译后,是否仍然需要安装Python项目依赖项?)
本文介绍了在用PyInstaller编译后,是否仍然需要安装Python项目依赖项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚开始学习Python,我用Python3构建了一个简单的Windows文件搜索应用程序。现在我想使用PyInstaller编译它并将其转换为.exe。是否仍需要由.exe版本的用户安装所有依赖项(如导入的操作系统和其他内置的Python库)?

如果我说得不够清楚,很抱歉。 提前谢谢。

推荐答案

否,您不需要原始库来运行使用安装程序创建的.exe文件。如果将pyinstaller–onefile –windowed标志一起使用,它将打包与该文件一起运行程序所需的所有库。

生成的包将不需要任何外部依赖项即可运行。

详细解释可以found here。

这篇关于在用PyInstaller编译后,是否仍然需要安装Python项目依赖项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Python app not working after using pyinstaller but doesn#39;t give any errors(使用pyinstaller后,Python应用程序无法运行,但未显示任何错误)
How to specify Python version and library versions for PyInstaller executable(如何为PyInstaller可执行文件指定Python版本和库版本)
PyInstaller 2.1 import custom package(PyInstaller 2.1导入自定义包)
Getting a Runtime Error in Executable made with pyinstaller(在使用pyinstaller制作的可执行文件中出现运行时错误)
ImageIO ValueError in exe made by pyinstaller(由pyinstaller生成的exe中的ImageIO ValueError)
Best way to call subprocess scripts in a Python exe(在Pythonexe中调用子进程脚本的最佳方式)