Changes between Initial Version and Version 1 of DjangoAndPyPy


Ignore:
Timestamp:
Jul 11, 2008, 11:38:32 AM (16 years ago)
Author:
Henrik Vendelbo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoAndPyPy

    v1 v1  
     1You can run Django on PyPy, and it appears to be running reasonably well. By Django version 1.0 the current issues should have been resolved.
     2For now you can get a project like Pinax from Django Hotclub up and running with a bit of extra work.
     3
     4Check out PyPy
     5
     6svn co http://codespeak.net/svn/pypy/dist pypy-dist
     7
     8For Mac:
     9Install Developer Tools
     10Install MacPorts
     11Install libffi
     12
     13
     14Build pypy-c
     15
     16Magic translation command (example):
     17./translate.py --thread --gc=hybrid targetpypystandalone --faassen --allworkingmodules --oldstyle
     18
     19       
     20Check out Django
     21
     22                Do a subversion checkout of django trunk. Or get version 1.0 that has the signals speedup (ticket 6814)
     23                Or if ticket 6814 is not in yet, apply patch ticket 6857 (http://code.djangoproject.com/ticket/6857)
     24
     25       
     26Python 2.4
     27
     28                Django only requires Python 2.3. But, be aware that many popular django applications depend on Python 2.5 runtime lib.
     29
     30                * elementtree (from xml.etree import cElementTree as ElementTree)
     31                python-openid
     32                yadis
     33                gdata
     34               
     35                * hashlib
     36                python-openid
     37                gravatar
     38               
     39
Back to Top