I know you have already moved on to v1.1.2 and I went through the Quick Start and v1.1.2 installs and runs as advertised.BUT I need to work on an exisiting project that uses v0.12.3 and I cannot get it to run; after the install when when I go to the url I get this message: 'ContextAwareExtendsNode' object has no attribute 'parent_name_expr'. Does anyone know what I need to do to get v0.12.3 to work (show the Mezzanine Home Page)?Thanks,JamieThese are the steps I followed.I am trying this on a MacBook Pro Running Lion (Mac OS X v10.7.4) and Python 2.7 (built with GCC 4.2.1).
- Make a new virtual environment:
mkvirtualenv --no-site-packages --distribute mymezz-001- Update pip to latest version:
pip install -U pip- Create a requirements.pip file containing Mezzanine==0.12.3:
vi requirements.pip
Mezzanine==0.12.3- Install Mezzanine:
pip install -r requirements.pip NOTE: Besides Mezzanine, django 1.1 is also installed!- Create a Mezzanine project:
mezzanine-project mymezz
cd mymezz- Create a datatbase:
python manage.py createdb Answer "yes" to create superuser now Username: < hit enter to use default > Enter an E-mail address. Enter Password: ************ Enter Password again: ************ Answer "yes" to install some initial content- Run the server:
python manage.py runserver NOTE: Notice the address and port (http://127.0.0.1:8000/)- Check it out in a browser:
Browse to address noted above: http://127.0.0.1:8000Notice Error Message: 'ContextAwareExtendsNode' object has no attribute 'parent_name_expr'