Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can Django be used with py2exe?

We'd like to create a Django Intranet application for mass market. We only need to support Windows users, and it needs to be very easy for a Windows admin (or "technical user") to deploy (baring in mind that most Windows admins/users have little experience with Python, etc).

Is Django + py2exe the answer? Do we need something extra, or something else?

like image 346
Nick Bolton Avatar asked Nov 01 '09 12:11

Nick Bolton


2 Answers

Yes, you require:

  • Python 2.5.2
  • Django (svn version at least 2008-06-05)
  • CherryPy (web server)
  • Py2Exe

Tutorial

like image 89
Radek Avatar answered Sep 27 '22 20:09

Radek


PyInstaller has builtin support for Django applications. It will do most of the magic by itself.

like image 20
Giovanni Bajo Avatar answered Sep 27 '22 19:09

Giovanni Bajo