Create executable of a python application -
Create executable of a python application -
i want create executable of python application can work on ubuntu machine.
python setuptools has options windows(bdist_wininst) , rmp(bdist_rpm), couldn't found alternative in python setuptools ubuntu or debian.
there 1 more alternative "bdist_dumb" don't use.
questions:
how create ubuntu executable using python setuptools ? how pyinstaller different setuptools , should utilize ?
stdeb might you're looking , works distutils, similar setuptools. here's simple illustration taken their repo:
#!/usr/bin/env python # -*- coding: utf-8 -*- distutils.core import setup import sys setup(name='simple_pkg', packages=['simple_pkg'], version='0.1', author='mister unicodé', author_email='mister.unicode@example.tld', description='python bundle unicodé fields', long_description='this python bundle unicodé data.', )
python executable setuptools pyinstaller
Comments
Post a Comment