I am new to django. I have version 1.3.1 installed.
I have created two projects: projectone and projecttwo using django-admin.py
And in projectone I have an app called blog created using python manage.py startapp
In projecttwo setings.py file when put the following in installed_apps:
INSTALLED_APPS = (
other code goes here...
'projectone.blog'
)
And then when I run projecttwo using manage.py I get:
Error: No module named projectone.blog
I have __ init __.py files placed correctly.
I just cannot figure out why. Maybe because projectone is not in pythonpath? Is that what django-admin.py does? and not doing it on mine for some reason? I am not sure.
