Changes between Version 5 and Version 6 of DjangoAndPyPy


Ignore:
Timestamp:
Jul 12, 2008, 4:33:21 AM (16 years ago)
Author:
Henrik Vendelbo
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DjangoAndPyPy

    v5 v6  
    1515
    1616== Build pypy-c ==
     17
    1718Don't try this on a weak machine. It must have at least 1Gb memory and a 5Gb swap space or it will do a lot of swapping. 2Gb is plenty.
    1819Expect it to take 30-60 minutes
     
    2425and standard Python libraries bundled with the PyPy source code if a runtime library is not already on the PYTHONPATH.
    2526
     27Now copy or link the pypy-c executable to a place that is on your PATH, such as:
     28{{{
     29ln pypy-c /opt/local/bin
     30}}}
    2631
    27 == Platform prerequisites ==
     32You should now be able to run pypy-c from any directory. Try it to make sure it works.
     33It will give you a warning about using compiled-in library path. That is ok. What this means is
     34that it is using path default that may only work on your machine.
     35
     36=== Platform prerequisites ===
    2837
    2938To compile PyPy you need a couple of developer tools. Essentially,
     
    8594
    8695== Run Django ==
    87                
    88 Make a link to pypy-c in /usr/shared/bin
    8996
     97Switch to the Pinax project directory and run the development server           
    9098{{{
     99pypy-c ./manage.py syncdb
    91100pypy-c ./manage.py runserver --noreload
    92 }}
     101}}}
     102
     103Reloading doesn't seem to be working properly at the moment, so you need to disable it.
Back to Top