Changes between Version 37 and Version 38 of IrcFAQ


Ignore:
Timestamp:
May 22, 2007, 11:43:55 PM (17 years ago)
Author:
Michael Axiak
Comment:

Adding fix for feisty fawn

Legend:

Unmodified
Added
Removed
Modified
  • IrcFAQ

    v37 v38  
    125125  * each filter or tag in your library is decorated correctly (see docs)
    126126  * neither your library nor anything it imports raises any exceptions (for example, if your library tries to import something that's not installed, and so raises an `ImportError`, that will prevent Django from seeing it)
     127
     128== I'm using Ubuntu Feisty Fawn and I get an error while using the tutorial ==
     129
     130Currently Feisty Fawn ships with Python 2.5.1-c1. This changes some behavior (which is changed back in 2.5.1-final) which is incompatible with Django. Luckily, feisty-proposed has a fix for this.
     131
     132Do the following to fix your problem (run all these using sudo, with root privileges):
     133
     134  * Add to {{{/etc/apt/sources.list}}}
     135{{{
     136deb http://us.archive.ubuntu.com/ubuntu/ feisty-proposed main restricted universe
     137deb-src http://us.archive.ubuntu.com/ubuntu/ feisty-proposed main restricted
     138}}}
     139
     140  * Run {{{apt-get update}}}
     141
     142  * Run {{{apt-get install python2.5}}}
     143
     144This should upgrade you to python 2.5.1.
Back to Top