What's the error message that you get? Also, do you have django installed in the system-wide site packages directory? If so the django-admin script may be on your PATH ahead of the one installed in GeoNode (or GeoNode might not have bothered to install one, I forget.) The system-wide script won't see packages installed in the virtualenv (which is basically the point of virtualenv.)
You can check with "which django-admin.py"; that works inside or outside the virtualenv. If you don't have django installed in the virtualenv, you can install it with "pip -U django==1.2.0" (make sure to activate the virtualenv first) If you have Django installed twice and the wrong one is being used, you can specify the full path to the script, like <venv>/bin/django-admin.py It might be something different so please let us know if that helps. -- David Winslow OpenGeo - http://opengeo.org/ On Sun, Oct 2, 2011 at 5:24 PM, Greg Corradini <[email protected]>wrote: > yep, i've tried using the command '$ geonode createsuperuser' both in venv > and outside... > > both return 'geonode command not found' > > -mobile I/O, forgive mistakes > > On Oct 2, 2011 10:36 AM, "Joe Larson" <[email protected]> wrote: > > did you try running `geonode createsuperuser` first? > > ~joe > > On Oct 2, 2011, at 10:30 AM, Greg Corradini wrote: > > > Hello, > > I'm following the instructions at > > h... > >
