-
Python/PyInstaller/0. PyInstaller Manual코딩/Python 2024. 7. 8. 12:20728x90
원본은 아래 링크를 참조한다.
https://pyinstaller.org/en/stable/index.html
Version
PyInstaller 6.9.0
Homepage
https://pyinstaller.org/
Contact
pyinstaller@googlegroups.com
Authors
David Cortesi, based on structure by Giovanni Bajo & William Caban, based on Gordon McMillan’s manual
Copyright
This document has been placed in the public domain.
PyInstaller bundles a Python application and all its dependencies into a single package. The user can run the packaged app without installing a Python interpreter or any modules. PyInstaller supports Python 3.8 and newer, and correctly bundles many major Python packages such as numpy, matplotlib, PyQt, wxPython, and others.
PyInstaller is tested against Windows, MacOS X, and Linux. However, it is not a cross-compiler; to make a Windows app you run PyInstaller on Windows, and to make a Linux app you run it on Linux, etc. x PyInstaller has been used successfully with AIX, Solaris, FreeBSD and OpenBSD but testing against them is not part of our continuous integration tests, and the development team offers no guarantee (all code for these platforms comes from external contributions) that PyInstaller will work on these platforms or that they will continue to be supported.
PyInstaller는 Python 애플리케이션과 모든 종속성을 단일 패키지로 묶는다. 사용자는 Python 인터프리터나 모듈을 설치하지 않고도 패키지된 앱을 실행할 수 있다. PyInstaller는 Python 3.8 이상을 지원하며 numpy, matplotlib, PyQt, wxPython 등과 같은 많은 주요 Python 패키지를 올바르게 번들로 제공한다.
PyInstaller는 Windows, MacOS X 및 Linux에 대해 테스트되었다. 그러나 크로스 컴파일러는 아니다. Windows에서 PyInstaller를 실행하는 Windows 앱을 만들고 Linux 등에서 실행하는 Linux 앱을 만든다. x PyInstaller는 AIX, Solaris, FreeBSD 및 OpenBSD에서 성공적으로 사용되었지만 이에 대한 테스트는 지속적인 통합의 일부가 아니다. 테스트하며 개발 팀은 PyInstaller가 이러한 플랫폼에서 작동하거나 계속 지원된다는 보장을 제공하지 않는다(이러한 플랫폼의 모든 코드는 외부 기여에서 비롯됨).
Quickstart
Make sure you have the Requirements installed, and then install PyInstaller from PyPI:
요구 사항이 설치되어 있는지 확인한 다음 PyPI에서 PyInstaller를 설치하라.
pip install -U pyinstaller
Open a command prompt/shell window, and navigate to the directory where your .py file is located, then build your app with the following command:
명령 프롬프트/셸 창을 열고 .py 파일이 있는 디렉터리로 이동한 후 다음 명령을 사용하여 앱을 빌드한다.
pyinstaller your_program.py
Your bundled application should now be available in the dist folder.
이제 번들 애플리케이션을 dist 폴더에서 사용할 수 있다.
Note
See Troubleshooting missing PyInstaller command if you get some kind of pyinstaller command not found error.
일종의 pyinstaller 명령을 찾을 수 없다는 오류가 발생하는 경우 PyInstaller 명령 누락 문제 해결을 참조하라.
Python/PyInstaller/1. What PyInstaller Does and How It Does It
Python/PyInstaller/2. Using PyInstaller
728x90'코딩 > Python' 카테고리의 다른 글
Python/지도를 사용할 수 있는 Folium/1. User guide (0) 2024.07.09 Python/지도를 사용할 수 있는 Folium/0. Getting started (0) 2024.07.09 Python/PyInstaller/1. What PyInstaller Does and How It Does It (0) 2024.07.08 Python/PyInstaller/2. Using PyInstaller (0) 2024.07.08 Python/PyInstaller 사용법 (0) 2024.07.08