HTTP/2 302
server: nginx
date: Thu, 17 Jul 2025 16:35:31 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100120085717
location: https://web.archive.org/web/20100120085717/https://wiki.python.org/moin/deployment
server-timing: captures_list;dur=0.720233, exclusion.robots;dur=0.028169, exclusion.robots.policy;dur=0.012733, esindex;dur=0.014558, cdx.remote;dur=53.008672, LoadShardBlock;dur=352.802981, PetaboxLoader3.datanode;dur=169.793518, PetaboxLoader3.resolve;dur=100.488383
x-app-server: wwwb-app220
x-ts: 302
x-tr: 437
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app220; 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: Thu, 17 Jul 2025 16:35:32 GMT
content-type: text/html; charset=utf-8
x-archive-orig-date: Wed, 20 Jan 2010 08:57:17 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.5
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: Wed, 20 Jan 2010 08:57:17 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="Wed, 16 Dec 2009 10:10:13 GMT", ; rel="memento"; datetime="Wed, 20 Jan 2010 08:57:17 GMT", ; rel="next memento"; datetime="Fri, 26 Feb 2010 15:43:38 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_13_20100120084733_crawl103_IndexOnly-c/51_13_20100120085515_crawl103.arc.gz
server-timing: captures_list;dur=0.714084, exclusion.robots;dur=0.026774, exclusion.robots.policy;dur=0.011260, esindex;dur=0.015605, cdx.remote;dur=103.079470, LoadShardBlock;dur=118.353210, PetaboxLoader3.datanode;dur=102.601556, load_resource;dur=339.095561, PetaboxLoader3.resolve;dur=262.670089
x-app-server: wwwb-app220
x-ts: 200
x-tr: 625
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 )