Re: runserver error: "No module named app3"

2012-08-24 Thread Bill Beal
I am using pip, and once I tried virtualenv without understanding it and it worked. There's a kind of knowledge that I call "who's on first" knowledge: you know what comes next but you don't know why. On Thu, Aug 23, 2012 at 6:29 PM, Alexis Bellido wrote: > I'd suggest you decouple your apps fro

Re: runserver error: "No module named app3"

2012-08-23 Thread Alexis Bellido
I'd suggest you decouple your apps from your projects. If you want to have everything under the same tree you could, I don't do it that way though. You could have a tree like this: /home/user --proj proj (this contains settings.py in Django 1.4) app1 app2 --app3 You already noticed

Re: runserver error: "No module named app3"

2012-08-22 Thread Bill Beal
Sorry, MELVYN. On Wednesday, August 22, 2012 11:53:44 PM UTC-4, Bill Beal wrote: > > Thanks, Melvin! That did it. On to the next error! > > > On Wednesday, August 22, 2012 5:16:15 PM UTC-4, Bill Beal wrote: >> >> Hi all, >> >> I have a Django project with apps that works OK on a Mac with Django

Re: runserver error: "No module named app3"

2012-08-22 Thread Bill Beal
Thanks, Melvin! That did it. On to the next error! On Wednesday, August 22, 2012 5:16:15 PM UTC-4, Bill Beal wrote: > > Hi all, > > I have a Django project with apps that works OK on a Mac with Django 1.3 > and Python 2.6, and I'm trying to move it to a Linux box with Django 1.4 > and Python

Re: runserver error: "No module named app3"

2012-08-22 Thread Melvyn Sopacua
Hi Bill, On 22-8-2012 23:16, Bill Beal wrote: Look at it like this to spot your error: > 'proj.app3', > proj/ cwd of the WSGI app > proj/proj/ >settings.py DJANGO_SETTINGS_MODULE = 'proj.settings' > proj/app3/ So this module is not proj.app3 but app3. I'm reasonably sure t

runserver error: "No module named app3"

2012-08-22 Thread Bill Beal
Hi all, I have a Django project with apps that works OK on a Mac with Django 1.3 and Python 2.6, and I'm trying to move it to a Linux box with Django 1.4 and Python 2.7. I created an empty project 'proj' with apps 'app1', 'app2', 'app3' on the Linux system and carefully merged settings.py, ur