Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Distributing Programs Written in Python [duplicate]

Tags:

python

Possible Duplicate:
Distributing Python programs

I have several source codes for some GUI programs I made in Python. I'd like to distribute them. However, I'd like to make it as easy as possible for the end user to get the program up and running. What are the common way's of going about this problem?

This is in reference to Windows XP and on.

like image 572
rectangletangle Avatar asked Nov 16 '10 02:11

rectangletangle


People also ask

How are Python programs distributed?

The most convenient way to deliver a Python application to a user is to provide them with an executable—either a single file or a directory with an easily identified executable somewhere in it.

How do I make a Python script distributable?

You can use a tool like PyInstaller to convert your script (. py file) into an executable (.exe on windows). The way that works is PyInstaller copies both the python interpretor and your script into a single file so that you can distribuite your program easily.

What is distribute in Python?

Distribute is intended to replace Setuptools as the standard method for working with Python module distributions. The fork has two goals: Providing a backward compatible version to replace Setuptools and make all distributions that depend on Setuptools work as before, but with less bugs and behaviorial issues.


2 Answers

All noteworthy linux distributions and Mac OS come shipped with some version of Python. Windows don't have Python installed by default, so you must install it separately in order to run a Python module. Of course the installed Python version must be the same as your program (version 2 or 3).

The easiest way to distribute your program is to just distribute the source code (e.g. send your module by email or upload it somewhere) but in that case, the target PC must have Python installed and meet the dependencies. An even better solution (at least for the community) is to upload your program as a package on PyPi. More info for that procedure can be found HERE.

In some cases there are reasons that prevent you from using these options. For example you can't install python and/or the dependencies (no root/admin account). If that is the case, you can bundle your module(s) along with everything else that is required to run your program (e.g python*.dll on windows). As far as i know the basic options for this kind of distribution are the following ones:

  1. PyInstaller
  2. briefcase
  3. fbs
  4. PyOxidizer
  5. nuitka --standalone
  6. py2app (only for Mac OS)
  7. cx_Freeze
  8. freeze
  9. py2exe

  10. cython --embed

Another approach would be to use Portable Python or in case of Linux/BSD StaticPython

Note : Not all of the aforementioned tools run on all platforms or/and support Python3. Check their documentation.

Unmaintained ones

  1. bbFreeze
  2. esky (unmaintained)
  3. vendorID
  4. gui2exe
like image 174
pmav99 Avatar answered Sep 28 '22 18:09

pmav99


You want py2exe, which is an extension of the distutils package.

http://www.py2exe.org/

like image 20
asthasr Avatar answered Sep 28 '22 17:09

asthasr