Newbie: ImportError during syncdb

2014-03-05 Thread David
Dear django users, I am new to django and have an ImportError: No module named bookmarks problem. It seems that as I tried to syncdb django does not recognize the bookmarks module I have created before. In the past I was able to syncdb, hence my confusion. I am trying to teach myself by followin

Re: Newbie: ImportError during syncdb

2014-03-05 Thread Robin Lery
What the name of the app folder? I think its just django_bookmarks. On Thu, Mar 6, 2014 at 6:43 AM, David wrote: > Dear django users, > > I am new to django and have an ImportError: No module named bookmarks > problem. > > It seems that as I tried to syncdb django does not recognize the > bookm

Re: Newbie: ImportError during syncdb

2014-03-06 Thread Jay Parikh
Hi David, Instead of specifying ''django_bookmarks.bookmarks'' in 'INSTALLED_APPS' i would suggest you to use your app name which you have created e.g someting like as below: INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.co

Re: Newbie: ImportError during syncdb

2014-03-06 Thread Jay Parikh
Let say for example i am going to create new app say bookmarks then i will do something like *"python manage.py startapp bookmarks" *likewise whatever name you have passed in place of *bookmarks.* Just place it inside INSTALLED_APPS. On Thu, Mar 6, 2014 at 1:06 PM, Robin Lery wrote: > What the

Re: Newbie: ImportError during syncdb

2014-03-07 Thread David
Dear Robin and Jay, thanks, I was able to solve my problem: setting.py just wants the name of the app. Cheers, David On 06/03/14 08:42, Jay Parikh wrote: > Let say for example i am going to create new app say bookmarks then i > will do something like *"python manage.py startapp bookmarks" *lik