| 127 | |
| 128 | == I'm using Ubuntu Feisty Fawn and I get an error while using the tutorial == |
| 129 | |
| 130 | Currently 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 | |
| 132 | Do the following to fix your problem (run all these using sudo, with root privileges): |
| 133 | |
| 134 | * Add to {{{/etc/apt/sources.list}}} |
| 135 | {{{ |
| 136 | deb http://us.archive.ubuntu.com/ubuntu/ feisty-proposed main restricted universe |
| 137 | deb-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 | |
| 144 | This should upgrade you to python 2.5.1. |