One problem I have had when reviving old checkouts is that the virtualenv pointed to an old Python directory and I had upgraded the Python installation on my system; I had to regenerate the virtualenv before things worked again. It may also be the case for GDAL; I am not sure since I haven't run into that problem myself.
If you don't have a *django-admin.py* in your virtualenv, it is likely that you have Django installed in global site-packages directory, and that the build script didn't install a new Django when you set up your environment. Is django-admin.py on your PATH? You can check with "which django-admin.py" (maybe "which django-admin"; some distributions like to rename that script for the packaged version and I believe Ubuntu is one of them. GeoNode currently has some issues with the most recent version of Django so it is actually somewhat important to ensure you are using the older 1.2 release. With pip, I think you should be able to just do: "pip install --upgrade Django==1.2" -- David Winslow OpenGeo - http://opengeo.org/ On Tue, May 10, 2011 at 7:29 AM, [email protected] < [email protected]> wrote: > Hello everybody, > since a long times I re-started working with GeoNede using a checkout > from GitHub. > I have some troubles: > - GDAL library is not available to transform() geometry error when > accessing maps. > I installed all needed packages, except the dev one, for Gdal (1.8.0) > but I have still this error confirmed by python shell: > >> from django.contrib.gis.gdal import HAS_GDAL > >> HAS_GDAL > False > - I can't find the django-admin.py file in > /var/www/geonode/wsgi/geonode/bin/ > > Using Ubuntu Server 10.04 > Thank you very much for your great work! > > L. >
