Python Language
Distributie
Zoeken…
py2app
Om het py2app-framework te gebruiken, moet u het eerst installeren. Doe dit door de terminal te openen en de volgende opdracht in te voeren:
sudo easy_install -U py2app
U kunt de pakketten ook pip
installeren als:
pip install py2app
Maak vervolgens het installatiebestand voor uw python-script:
py2applet --make-setup MyApplication.py
Bewerk de instellingen van het installatiebestand naar wens, dit is de standaardinstelling:
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['test.py']
DATA_FILES = []
OPTIONS = {'argv_emulation': True}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)
Om een pictogrambestand toe te voegen (dit bestand moet de extensie .icns hebben) of afbeeldingen in uw toepassing als referentie op te nemen, wijzigt u uw opties zoals weergegeven:
DATA_FILES = ['myInsertedImage.jpg']
OPTIONS = {'argv_emulation': True, 'iconfile': 'myCoolIcon.icns'}
Voer dit ten slotte in in terminal:
python setup.py py2app
Het script moet worden uitgevoerd en u vindt uw voltooide toepassing in de map dist.
Gebruik de volgende opties voor meer aanpassing:
optimize (-O) optimization level: -O1 for "python -O", -O2 for
"python -OO", and -O0 to disable [default: -O0]
includes (-i) comma-separated list of modules to include
packages (-p) comma-separated list of packages to include
extension Bundle extension [default:.app for app, .plugin for
plugin]
extra-scripts comma-separated list of additional scripts to include
in an application or plugin.
cx_Freeze
Installeer cx_Freeze vanaf hier
Pak de map uit en voer deze opdrachten uit vanuit die map:
python setup.py build
sudo python setup.py install
Maak een nieuwe map voor uw python-script en maak een "setup.py" -bestand in dezelfde map met de volgende inhoud:
application_title = "My Application" # Use your own application name
main_python_file = "my_script.py" # Your python script
import sys
from cx_Freeze import setup, Executable
base = None
if sys.platform == "win32":
base = "Win32GUI"
includes = ["atexit","re"]
setup(
name = application_title,
version = "0.1",
description = "Your Description",
options = {"build_exe" : {"includes" : includes }},
executables = [Executable(main_python_file, base = base)])
Voer nu uw setup.py uit vanaf terminal:
python setup.py bdist_mac
OPMERKING: Op El Capitan moet dit als root worden uitgevoerd met de SIP-modus uitgeschakeld.