Fedora 15 pre/post-installation setup
I have mentioned in my previous post containing GNOME 3 screenshots (which I should say is a thing of beauty) that I’ve installed Fedora 15. During the pre-installation customization page, I clicked some of the familiar items that I would normally install eventually: Applications Design Suite (contains GIMP and OptiPNG, plus more) Office/Productivity (contains LibreOffice) [...]
UnacceptableVersionError: django 1.1 was requested, but 1.2.1.final.0 is already in use
The Django version I have in my machine is 1.2.1, while one of my apps running on Google App Engine utilizes use_library to use Django 1.1. Apparently, Django versions later than 1.1 is not included in the Google App Engine SDK. So everytime I try to access my app on my dev machine, I get [...]
How to find Django version
There are cases when you would want to know the version of Django that is being used in your Python installation. To do that, go to your Python console and execute the following commands: >>> import django >>> django.VERSION In my machine, it showed the following: (1, 2, 1, ‘final’, 0)
