如何将 python 脚本更改为应用程序
How to change a python script into an app
我写了一个 python cli 应用程序,运行良好。但每次我想使用它时,我都应该使用 python3 myapp.py 这不是很好和有用的方法,特别是因为我想让这个应用程序准备好在 pypy 中使用,以便用户可以使用点.
我想知道将 python 脚本更改为真正的 cli 应用程序的过程。
如果您想通过 pip
将其提供给用户,您应该创建包、构建它并将其上传到 Python 包索引。官方文档中有关于如何执行此操作的教程:Packaging Python Projects
It will show you how to add the necessary files and structure to create the package, how to build the package, and how to upload it to the Python Package Index.
如果您想将 python 脚本转换为可执行文件,您可以使用 Pyinstaller。它适用于 Windows、Linux 和 Mac:
Install PyInstaller from PyPI:
pip install pyinstaller
Go to your program’s directory and run:
pyinstaller yourprogram.py
This will generate the bundle in a subdirectory called dist.
我写了一个 python cli 应用程序,运行良好。但每次我想使用它时,我都应该使用 python3 myapp.py 这不是很好和有用的方法,特别是因为我想让这个应用程序准备好在 pypy 中使用,以便用户可以使用点.
我想知道将 python 脚本更改为真正的 cli 应用程序的过程。
如果您想通过 pip
将其提供给用户,您应该创建包、构建它并将其上传到 Python 包索引。官方文档中有关于如何执行此操作的教程:Packaging Python Projects
It will show you how to add the necessary files and structure to create the package, how to build the package, and how to upload it to the Python Package Index.
如果您想将 python 脚本转换为可执行文件,您可以使用 Pyinstaller。它适用于 Windows、Linux 和 Mac:
Install PyInstaller from PyPI:
pip install pyinstaller
Go to your program’s directory and run:
pyinstaller yourprogram.py
This will generate the bundle in a subdirectory called dist.