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

Popular posts from this blog

xslt - DocBook 5 to PDF transform failing with error: "fo:flow" is missing child elements. Required content model: marker* -

mediawiki - How do I insert tables inside infoboxes on Wikia pages? -

Local Service User Logged into Windows -