Re: Django import error (Please reply soon)

2013-06-20 Thread Jacky Tian
Add 'myapp' to your INSTALLED_APPS in settings.py, right now Django doesn't know that myapp is an existing package. On Thursday, June 20, 2013 3:06:12 AM UTC-4, sanju wrote: > > > > Hi I have problems with import error in django. Tried looking > > into all possible solutions in Google, but in va

Re: Django import error (Please reply soon)

2013-06-20 Thread abhijeet shete
Hi Sanju, Whenever you create any app in django you need to add that app's name under INSTALLED_APPS in settings.py file. It looks like you commented that line on which you added the name of app(myapp) under INSTALLED_APPS in your settings file. Uncomment that line and then try again hope it w

Re: Django import error (Please reply soon)

2013-06-20 Thread Gabriel
What is the command you're trying to run, and where in the file tree are you when you do it? - Gabe On Thu, Jun 20, 2013 at 4:06 AM, sanju wrote: > > > Hi I have problems with import error in django. Tried looking > > into all possible solutions in Google, but in vain.I am posting my files > >

Django import error (Please reply soon)

2013-06-20 Thread sanju
Hi I have problems with import error in django. Tried looking into all possible solutions in Google, but in vain.I am posting my files here.Please look into it and correct it as soon as possible.Thanks in Advance! This is my hierarchy: c:/Users/Sanju/ mysite -myapp -> _init_.py