HTTP/2 302
server: nginx
date: Wed, 16 Jul 2025 17:32:36 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090607092851
location: https://web.archive.org/web/20090607092851/https://wiki.python.org/moin/deployment
server-timing: captures_list;dur=2.524959, exclusion.robots;dur=0.014408, exclusion.robots.policy;dur=0.007041, esindex;dur=0.010861, cdx.remote;dur=166.935900, LoadShardBlock;dur=202.413233, PetaboxLoader3.datanode;dur=73.690739
x-app-server: wwwb-app218
x-ts: 302
x-tr: 394
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=1
set-cookie: SERVER=wwwb-app218; path=/
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Wed, 16 Jul 2025 17:32:37 GMT
content-type: text/html; charset=utf-8
x-archive-orig-date: Sun, 07 Jun 2009 09:28:51 GMT
x-archive-orig-server: Apache/2.2.9 (Debian) mod_fastcgi/2.4.6 mod_python/3.3.1 Python/2.5.2 mod_wsgi/2.3
x-archive-orig-vary: Cookie,User-Agent,Accept-Language
x-archive-orig-content-length: 8697
x-archive-orig-connection: close
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 07 Jun 2009 09:28:51 GMT
link:
; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 08 Dec 2007 10:36:07 GMT", ; rel="prev memento"; datetime="Sat, 08 Dec 2007 10:36:07 GMT", ; rel="memento"; datetime="Sun, 07 Jun 2009 09:28:51 GMT", ; rel="next memento"; datetime="Wed, 16 Dec 2009 10:10:13 GMT", ; rel="last memento"; datetime="Thu, 28 Nov 2024 00:38:49 GMT"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: 51_10_20090607061229_crawl101-c/51_10_20090607092751_crawl103.arc.gz
server-timing: captures_list;dur=2.143161, exclusion.robots;dur=0.023587, exclusion.robots.policy;dur=0.010200, esindex;dur=0.013337, cdx.remote;dur=186.012072, LoadShardBlock;dur=210.439224, PetaboxLoader3.datanode;dur=247.829704, load_resource;dur=165.788082, PetaboxLoader3.resolve;dur=59.970930
x-app-server: wwwb-app218
x-ts: 200
x-tr: 633
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
deployment - PythonInfo Wiki
One of the most-frequently asked questions of all time is this: "I have a Python application I've developed; how do I deliver it to my customer/friend/...?"
Here are typical answers:
tar up the source and send it. It's reasonable to expect that the end-user's host will have Python installed. MacOS comes that way; most Linux distributions do; and it's not onerous to insist that a Windows user install, for example, ActivePython ;
for Windows, use MovablePython ;
for this purpose, Pyrex can be regarded as a language variant to Python itself;
Freeze
cx Freeze
py2app is for Macintosh
py2exe
PyInstaller (supports Windows, Linux and soon Mac)
... FredrikLundh discussed some of these in 2003.
As of 2007, py2exe perhaps is second in use only to source distribution.
EditText (last edited 2008-11-15 14:01:24 by localhost )