Re: ImportError at/ No module name

2016-10-01 Thread Aravind S
Check this post On Thursday, December 20, 2012 at 6:57:42 PM UTC+5:30, djangobie wrote: > > Hi, I have just started practicing a tutorial for buidling a basic blog ( > http://www.djangorocks.com/tutorials/how-to-c

Re: ImportError at/ No module name

2015-11-07 Thread Scott Anderson
We just tripped across something similar here as well. The person doing the tutorial had flipped the 'startup' and 'put "blog" in the INSTALLED_APPS' steps of the tutorial. She commented out 'blog' from INSTALLED_APPS and startapp worked as intended. -scott On Sunday, August 11, 2013 at 8:11:1

Re: ImportError at/ No module name

2013-08-11 Thread Pranay Shah
I just want to thank everyone. I had an error "no module name image" since yesterday nite. I googled and found out that I need to install python image library. I did that. I still continued getting error. Just then I came across this post where someone was getting "no module... blog". I read it

Re: ImportError at/ No module name

2013-05-23 Thread Rainman Tai
Hi donarb, Thx a lot. I got the same problem and it's fixed now. On Tuesday, December 25, 2012 10:16:23 AM UTC-8, donarb wrote: > > On Tuesday, December 25, 2012 4:29:22 AM UTC-8, djangobie wrote: >> >> I appreciate your response. >> The __init__.py is there in the app folder (yes, I created the

Re: ImportError at/ No module name

2012-12-25 Thread donarb
On Tuesday, December 25, 2012 4:29:22 AM UTC-8, djangobie wrote: > > I appreciate your response. > The __init__.py is there in the app folder (yes, I created the app via > manage.py). > It ran perfectly on initial attempts, but with new code added, I got > stuck. My so far conclusion (though, not

Re: ImportError at/ No module name

2012-12-25 Thread djangobie
I appreciate your response. The __init__.py is there in the app folder (yes, I created the app via manage.py). It ran perfectly on initial attempts, but with new code added, I got stuck. My so far conclusion (though, not helping at all) is may be I have set some kind 'circular loop' here, while

Re: ImportError at/ No module name

2012-12-24 Thread Ryan Blunden
Did this fix the problem for you? Did you create the application using `python manage.py startapp blog`? If so, that would've created the blog applicationas a Python module. The __init__.py is required so Pyth

Re: ImportError at/ No module name

2012-12-24 Thread Peter of the Norse
The error is pretty clear: It can't find /home/username/djangosites/djangopractice/blog/__init__.py Make sure that file exists. Try running `manage.py shell` and `import blog`. Also, make sure that the files are readable by your web server, e.g. apache. On Dec 20, 2012, at 9:55 PM, djangobie wr

Re: ImportError at/ No module name

2012-12-20 Thread djangobie
I appreciate your response, but it cannot be the case, as my app is present in top level dir along with manage.py and project file container i.e. 'djangopratice': *my dir structure is:* -- djangopractice- -

Re: ImportError at/ No module name

2012-12-20 Thread djangobie
Can someone kindly look into this. On Thursday, December 20, 2012 6:27:42 PM UTC+5, djangobie wrote: > > Hi, I have just started practicing a tutorial for buidling a basic blog ( > http://www.djangorocks.com/tutorials/how-to-create-a-basic-blog-in-django/starting-your-application.html > ) > > D

Re: ImportError at/ No module name

2012-12-20 Thread Sandeep kaur
Make installed apps as : INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'django.contrib.staticfiles', 'django.contrib.admin', 'django.contrib.admindocs',

ImportError at/ No module name

2012-12-20 Thread djangobie
Hi, I have just started practicing a tutorial for buidling a basic blog ( http://www.djangorocks.com/tutorials/how-to-create-a-basic-blog-in-django/starting-your-application.html ) Did exactly the same (except, using 'djangopractice' as project name instead of 'djangorocks') Actually It also d

ImportError at/ No module name

2012-12-20 Thread Nabeel Ahmed
Hi, I have just started practicing a tutorial for buidling a basic blog ( http://www.djangorocks.com/tutorials/how-to-create-a-basic-blog-in-django/starting-your-application.html ) Did exactly the same (except, using 'djangopractice' as project name instead of 'djangorocks') Actually It also d