Error: No module named allauth

2019-07-29 Thread Karreerchange
Hi, updated the 'allauth' app to installed apps in settings.py getting the error 'No module named 'allauth' Tried pip installing, but no matches returned. keans-air:bnt ProductionEnv$ pip3 install django allauth Requirement already satisfied: django in /usr/local/li

Re: import error: no module named viewflow.frontend

2017-02-24 Thread Михаил Подгурский
angelachakupa.at написал: > > hie guys > m getting this error * Import error: no module named viewflow.frontend * yet > i followed the procedures on how to apply the view flow module what could > be the problem. > > > > > Flow.py > > > > > > from

Re: import error: no module named viewflow.frontend

2017-02-23 Thread chris rose
did you add 'viewflow.frontend' to installed_apps? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to this gro

import error: no module named viewflow.frontend

2017-02-23 Thread angelachakupa.at
hie guys m getting this error * Import error: no module named viewflow.frontend * yet i followed the procedures on how to apply the view flow module what could be the problem. Flow.py from viewflow import flow,lock from viewflow.base import this, Flow from viewflow.contrib import

Re: Import error - No module named http

2015-03-18 Thread Mario Gudelj
And you should probably use suds for soap based apis. On 19/03/2015 4:24 am, "Andrew Farrell" wrote: > Actually, please listen to Guilherme over me; He seems to have correctly > spotted the omission. > > On Wed, Mar 18, 2015 at 11:45 AM, Andrew Farrell > wrote: > >> So it seems like the problem

Re: Import error - No module named http

2015-03-18 Thread Andrew Farrell
Actually, please listen to Guilherme over me; He seems to have correctly spotted the omission. On Wed, Mar 18, 2015 at 11:45 AM, Andrew Farrell wrote: > So it seems like the problem is that you are doing `import http` on line > 24 of /home/akhil/Documents/NIVIN/NIVIN/svn/CrossFraudet/ > branches

Re: Import error - No module named http

2015-03-18 Thread Andrew Farrell
So it seems like the problem is that you are doing `import http` on line 24 of /home/akhil/Documents/NIVIN/NIVIN/svn/CrossFraudet/ branches/V2.1.0/crossfraudet/cdrimport/views/fraud_summary_view.py rather than `import httplib`. Python2 doesn't have a module in the standard library named `http`, onl

Re: Import error - No module named http

2015-03-18 Thread Guilherme Leal
Nivin and Shinto, You are forgetting to instantiate the HTTPConnection object: Exemple: *import httplib* *from xml.dom import minidom* *http = httplib.HTTPConnection("http://mydomain.com ")* *http.request("POST", "/path/to/my/webservice", body=xml, headers = {* *"Host

Re: Import error - No module named http

2015-03-18 Thread Nivin Paul
ImportError at /cdrimport/settings/fraudsummary/disconnect/ No module named http Request Method: GET Request URL: http://192.168.12.59:8080/cdrimport/settings/fraudsummary/disconnect/?id=3 Django Version: 1.6.4 Exception Type: ImportError Exception Value: No module named http Except

Re: Import error - No module named http

2015-03-18 Thread SHINTO PETER
iam to getting same error Traceback (most recent call last): File "test_soap.py", line 4, in http.request("POST", "/path/to/my/webservice", body=xml, headers = { NameEr

Re: Import error - No module named http

2015-03-18 Thread Andrew Farrell
Hello Nivin, Could you please hit the "switch to copy-and-paste view" link at the top of the tradeback and copy that? The bottom of a traceback is often the most useful for debugging. Feel free to paste it or relevant code at github gist and send the link if you want to

Re: Import error - No module named http

2015-03-18 Thread Guilherme Leal
you didnt instanciated the HttpConnection Object Check the docs. https://docs.python.org/2/library/httplib.html#httpconnection-objects Em qua, 18 de mar de 2015 às 13:24, Nivin Paul escreveu: > I need to call a web service that written using SOAP from a django > application , to do that i used

Re: Error: No module named polls

2015-01-08 Thread Collin Anderson
Hi, Question(question_text="que hay?", pub_date=timezone()) should be: Question(question_text="que hay?", pub_date=timezone.now()) Collin On Tuesday, January 6, 2015 at 9:03:32 AM UTC-5, ibes ... wrote: > > Hi, > thanks for your answer... > here is the path of my site, that i called "primerd

Re: Error: No module named polls

2015-01-06 Thread tita
Hi, thanks for your answer... here is the path of my site, that i called "primerdjango": C:\xampp\htdocs\primerdjango\ inside of that folder i have: polls\ primerdjango\ db.sqlite3 manage.py Vista.py then inside of - polls - i have: m

Re: Error: No module named polls

2015-01-05 Thread Vijay Khemlani
Also make sure that there is an __init__.py file in the polls directory On Mon, Jan 5, 2015 at 12:47 PM, Xavier Ordoquy wrote: > Hi, > > > Le 5 janv. 2015 à 16:41, ibes ... a écrit : > > hello, > I am frustrated with django and phyton tutorial it is very difficult > i'm having a problem with th

Re: Error: No module named polls

2015-01-05 Thread Xavier Ordoquy
Hi, > Le 5 janv. 2015 à 16:41, ibes ... a écrit : > > hello, > I am frustrated with django and phyton tutorial it is very difficult > i'm having a problem with the tutorial of django and python, > > am using django 1.7.1 and python 2.7 on win xp-sp3 so far it was good, i > create everything

Re: Error: No module named polls

2015-01-05 Thread ibes ...
hello, I am frustrated with django and phyton tutorial it is very difficult i'm having a problem with the tutorial of django and python, am using django 1.7.1 and python 2.7 on win xp-sp3 so far it was good, i create everything without problem but in tutorial step where it says: https://docs.

Re: Error: No module named mysql.base when trying to sync.db

2014-05-17 Thread Arvind Aj
> >> > >> On Apr 1, 12:48 am, nai wrote: > >> > >> > >> > >> > I posted the same question on stackoverflow > >> > here: > http://stackoverflow.com/questions/5509755/problem-with-django-syncdb... > >> > >>

Re: Error: No module named books

2013-03-16 Thread Gaurav Munjal
Thank you Chris! I changed mysite.books to books and everything works fine now. On Friday, November 30, 2012 7:54:36 AM UTC+5:30, Chris Recher wrote: > > Thanks for the help everyone. I was using 1.4.x, not the 1.0 the book is > based on. After fooling around with the commands for a bit, I was a

Re: Error: No module named books

2013-01-18 Thread Sandip Sinha
Thanks Chris. Your response just saved my day! I was able to get past this issue!! - Sandip On Thursday, November 29, 2012 6:24:36 PM UTC-8, Chris Recher wrote: > Thanks for the help everyone. I was using 1.4.x, not the 1.0 the book is > based on. After fooling around with the commands for

Error "no module named xxxx"

2012-12-19 Thread Sebastien Hoarau
.. 127.0.0.1:8000/photos/2012 delivering the second page annee.html Perfect !!! :) That's so simple I thought... annee gives a list of gallery : I pick one... 127.0.0.1:8000/photos/2012/1/0 (1 is the ID of the gallery, what I named serie and 0 is the default photo's ID, the first one) and the

Re: Error: No module named books

2012-11-29 Thread Chris Recher
Thanks for the help everyone. I was using 1.4.x, not the 1.0 the book is based on. After fooling around with the commands for a bit, I was able to figure out that the problem was in the INSTALLED_APPS section - I included 'mysite.books', but the new way to do that is just 'books'. -- You recei

Re: Error: No module named books

2012-11-29 Thread Timothy Makobu
inside of it. I added a few > > models to the models.py file inside books, then tried to use "python > > manage.py validate". I got "Error: No module named books" in return. > > __init__.py is perfectly intact in both the second mysite directory and > the &g

Re: Error: No module named books

2012-11-29 Thread Tom Evans
app called books inside of it. I added a few > models to the models.py file inside books, then tried to use "python > manage.py validate". I got "Error: No module named books" in return. > __init__.py is perfectly intact in both the second mysite directory and the > books di

Re: Error: No module named books

2012-11-29 Thread jianhui chen
edicted. I've got a project called mysite. I used "python manage.py > startapp books" to create an app called books inside of it. I added a few > models to the models.py file inside books, then tried to use "python > manage.py validate". I got "Error: No module

Error: No module named books

2012-11-29 Thread Chris Recher
nside books, then tried to use "python manage.py validate". I got "Error: No module named books" in return. __init__.py is perfectly intact in both the second mysite directory and the books directory. I've added mysite.books to INSTALLED_APPS. All the results I could find sea

Re: runserver error: "No module named app3"

2012-08-24 Thread Bill Beal
Wednesday, August 22, 2012 6:16:15 PM UTC-3, 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 2.7. I crea

Re: runserver error: "No module named app3"

2012-08-23 Thread Alexis Bellido
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, > urls.py etc. with

Re: runserver error: "No module named app3"

2012-08-22 Thread Bill Beal
d carefully merged settings.py, >> urls.py etc. with the initial files that were created. When I run 'python >> manage.py runserver' it says "Error: no module named app3" if app3 is the >> last in the list of installed apps (see below), but if I swap app2 and

Re: runserver error: "No module named app3"

2012-08-22 Thread Bill Beal
go 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, > urls.py etc. with the initial files that were created. When I run 'python > manage.py r

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
Linux system and carefully merged settings.py, urls.py etc. with the initial files that were created. When I run 'python manage.py runserver' it says "Error: no module named app3" if app3 is the last in the list of installed apps (see below), but if I swap app2 and app3 it

Re: call_command('syncdb') in virtualenv failing: Error: No module named staticfiles

2012-04-23 Thread Stodge
nd creates > dummy data doesn't. My code: > > os.environ["DJANGO_SETTINGS_MODULE"]="settings" > call_command('syncdb', interactive=False) > > is giving: > > Error: No module named staticfiles > > I assume it's using Django insta

call_command('syncdb') in virtualenv failing: Error: No module named staticfiles

2012-04-23 Thread Stodge
I'm trying to port an existing app to Django 1.4 so I'm using virtualenv. ./manage.py syncdb works but my old script that calls syncdb and creates dummy data doesn't. My code: os.environ["DJANGO_SETTINGS_MODULE"]="settings" call_command('syncdb', int

Re: python manage.py syncdb Error: No module named messages

2012-03-16 Thread Shawn Milochik
Not a PATH issue, but a PYTHONPATH issue. Run "python manage.py shell" and try to import 'messages.' I suspect it's not where you think it is, or its location is not on your PYTHONPATH. -- You received this message because you are subscribed to the Google Groups "Django users" group. To pos

Re: python manage.py syncdb Error: No module named messages

2012-03-16 Thread Robert Steckroth
Ya, it is probably a path issue. It is set as this by the way --> ['', '/usr/lib64/python2.4/site-packages/MySQL_python-1.2.3c1-py2.4-linux-x86_64.egg', '/usr/lib64/python24.zip', '/usr/lib64/python2.4', '/usr/lib64/python2.4/plat-linux2', '/usr/lib64/python2.4/lib-tk', '/usr/lib64/python2.4/lib-d

Re: python manage.py syncdb Error: No module named messages

2012-03-16 Thread Robert Steckroth
Also can I assume, regarding the above question above, that "messages" is the last thing Django is processing since it is at the bottom of the list in installed apps? I.e. If I fix the messages error it might work? INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes',

Re: python manage.py syncdb Error: No module named messages

2012-03-16 Thread Shawn Milochik
Check your PYTHONPATH. Perhaps it's not set right on the CentOS machine. The Linux distro shouldn't make a difference, nor should the presence of Cpanel or MySQL. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send ema

python manage.py syncdb Error: No module named messages

2012-03-16 Thread Robert Steckroth
Hey Gang, I have a Django project built on a Debian server at home using http://djangobb.org";>DjangoBB. It is working on the Debain OS but I am having huge problems on the Centos server. This seams to be the farthest I can go with it. --> #-->python manage.py syncdb Error: N

Re: Error: No module named debug_toolbar

2012-01-04 Thread Denis Darii
d existing installation: django-debug-toolbar 0.8.5 >Uninstalling django-debug-toolbar: > Successfully uninstalled django-debug-toolbar > Running setup.py install for django-debug-toolbar > > Successfully installed django-debug-toolbar > Cleaning up... > > (Pinax-en

Re: Error: No module named debug_toolbar

2012-01-03 Thread Alec Taylor
sting installation: django-debug-toolbar 0.8.5 Uninstalling django-debug-toolbar: Successfully uninstalled django-debug-toolbar Running setup.py install for django-debug-toolbar Successfully installed django-debug-toolbar Cleaning up... (Pinax-env) P:\Projects\Pinax>manage.py

Re: Error: No module named debug_toolbar

2012-01-03 Thread Denis Darii
Try to force the installation inside your env: (Pinax-env) P:\Projects\Pinax>pip install* --ignore-installed * django-debug_toolbar On Tue, Jan 3, 2012 at 12:31 PM, Alec Taylor wrote: > Unfortunately I keep getting this error, no mater what I do. > > Here's what I've attempted: http://pastebin.

Error: No module named debug_toolbar

2012-01-03 Thread Alec Taylor
Unfortunately I keep getting this error, no mater what I do. Here's what I've attempted: http://pastebin.com/jcrSSYvd How do I solve this error? Thanks for all suggestions, Alec Taylor -- You received this message because you are subscribed to the Google Groups "Django users" group. To post

Re: hi guys help with this error, : Error: No module named staticfiles

2011-07-28 Thread kenneth gonsalves
On Thu, 2011-07-28 at 14:13 +0200, Coulson Thabo Kgathi wrote: > how can i updadte django i tried and if failed, pliz help how did you install django? what distro? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send emai

Re: hi guys help with this error, : Error: No module named staticfiles

2011-07-28 Thread Coulson Thabo Kgathi
how can i updadte django i tried and if failed, pliz help -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...

Re: hi guys help with this error, : Error: No module named staticfiles

2011-07-28 Thread Tom Evans
On Thu, Jul 28, 2011 at 10:56 AM, Coulson Thabo Kgathi wrote: > this error came after i put this : jango.contrib.staticfiles in the > installed apps > > i wanted to put a picture in my template so whne runing the server i > got the error > >  Error: No module named staticfi

hi guys help with this error, : Error: No module named staticfiles

2011-07-28 Thread Coulson Thabo Kgathi
this error came after i put this : jango.contrib.staticfiles in the installed apps i wanted to put a picture in my template so whne runing the server i got the error Error: No module named staticfiles -- You received this message because you are subscribed to the Google Groups "Django

Re: Error: No module named messages.

2011-05-06 Thread Jacob Scherffenberg
Solved it. Found something called pip that installs pythons packages. thanks for your answers On May 5, 9:34 pm, Jacob Scherffenberg wrote: > Cool, but what folder should i put, the content of that download into, > found something similar. > but im not quite sure which python folder is the right

Re: Error: No module named messages.

2011-05-05 Thread Jacob Scherffenberg
Cool, but what folder should i put, the content of that download into, found something similar. but im not quite sure which python folder is the right one? whereis python - gives me like 10 paths. On 5 Maj, 20:55, David Markey wrote: > A quick google yields: > > https://github.com/robhudson/djang

Re: Error: No module named messages.

2011-05-05 Thread Jacob Scherffenberg
Okay i see now that the packages system install both python-django and python-django-debug-toolbar, when i ask for the debug-toolbar. And apparently the python-django version in the package systems is 1.1.1 which is the problem. but how do i get debug-toolbar without getting python-django(again) ?

Re: Error: No module named messages.

2011-05-05 Thread David Markey
A quick google yields: https://github.com/robhudson/django-debug-toolbar On 5 May 2011 19:51, Jacob Scherffenberg wrote: > I found the problem, but stil doesn't really know what to do. > But i was fairly sure that i used 1.3, which i did. > But when i install the debug-toolbar with sudo apt-ge

Re: Error: No module named messages.

2011-05-05 Thread Jacob Scherffenberg
I found the problem, but stil doesn't really know what to do. But i was fairly sure that i used 1.3, which i did. But when i install the debug-toolbar with sudo apt-get install pyhton- djang-debug-toolbar. My django version changes to version 1.1.1 Where can i get the toolbar otherwise, and without

Re: Error: No module named messages.

2011-05-05 Thread Karen Tracey
On Thu, May 5, 2011 at 7:43 AM, Jacob Scherffenberg wrote: > Im using Django-1.3 > > Are you absolutely sure about that? The message generally happens when you have a settings file produced by 1.2+ or higher (thus including the django.contrib.messages app in INSTALLED_APPS) but the running level o

Re: Error: No module named messages.

2011-05-05 Thread Jacob Scherffenberg
Im using Django-1.3 On May 4, 1:35 pm, Kenneth Gonsalves wrote: > On Wed, 2011-05-04 at 02:10 -0700, Jacob Scherffenberg wrote: > > Have been working on anError:Nomodulenamed debug toolbar for a > > couple hours, finally realized that i could just use the ubuntu > > package system, to get it. > >

Re: Error: No module named messages.

2011-05-04 Thread Kenneth Gonsalves
On Wed, 2011-05-04 at 02:10 -0700, Jacob Scherffenberg wrote: > Have been working on an Error: No module named debug toolbar for a > couple hours, finally realized that i could just use the ubuntu > package system, to get it. > Thought that was all, but now i get Error: No module na

Re: Error: No module named messages.

2011-05-04 Thread David Markey
You're probably using a version of django that is too old.. the messages framework was introduced in 1.2 i think? On 4 May 2011 10:10, Jacob Scherffenberg wrote: > Have been working on an Error: No module named debug toolbar for a > couple hours, finally realized that i could j

Error: No module named messages.

2011-05-04 Thread Jacob Scherffenberg
Have been working on an Error: No module named debug toolbar for a couple hours, finally realized that i could just use the ubuntu package system, to get it. Thought that was all, but now i get Error: No module named messages.? What to do? -- You received this message because you are subscribed

Re: Import error No module named urls to url login_in in html page

2011-04-19 Thread Guevara
Thank you Subhranath! I do not know what happened, but I created a new project and put the same configuration and is now working. I think it was a problem with the framework. I made the correction on this line: AUTH_PROFILE_MODULE = 'imobiliaria.login' <-- login app Thanks! On 19 abr, 06:49

Re: Import error No module named urls to url login_in in html page

2011-04-19 Thread Subhranath Chunder
Hi, The problems seems to be with the way you are using the view prefixes in the 'patterns' function in your urls.py Refer to: http://docs.djangoproject.com/en/dev/topics/http/urls/#the-view-prefix You have used 'view' string twice. Thanks, Subhranath Chunder. On Tue, Apr 19, 2011 at 5:11 AM, G

Import error No module named urls to url login_in in html page

2011-04-18 Thread Guevara
Hello!! I am getting the following error on my index.html page: Exception Type: TemplateSyntaxError Exception Value: Caught ImportError while rendering: No module named urls In this line: Login My urls.py: (r'^imobiliaria/', include('auth.urls')), In my auth app, i have thi

Re: Error: No module named mysql.base when trying to sync.db

2011-04-15 Thread paganplan paganplan
rote: >> same here. >> >> On Apr 1, 12:48 am, nai wrote: >> >> >> >> > I posted the same question on stackoverflow >> > here:http://stackoverflow.com/questions/5509755/problem-with-django-syncdb... >> >> > Reproduced >> >

Re: Error: No module named mysql.base when trying to sync.db

2011-04-14 Thread pagan
> > Hi all, I'm trying to deploy my project on my EC2 instance. When I run > > python manage.py validate I get this error Error: No module named > >mysql.base. > > > I have already installed MySQL-python using yum install MySQL-python. > > I can import MySQLdb

Re: Error: No module named mysql.base when trying to sync.db

2011-04-12 Thread dsx
n manage.py validate I get this error Error: No module named > mysql.base . > > I have already installed MySQL-python using yum install MySQL-python. > I can import MySQLdb successfully from the Python interpreter. > > I can't seem to figure out what's wrong? > > I am

Error: No module named mysql.base when trying to sync.db

2011-04-01 Thread nai
I posted the same question on stackoverflow here: http://stackoverflow.com/questions/5509755/problem-with-django-syncdb-on-amazon-ec2 Reproduced Hi all, I'm trying to deploy my project on my EC2 instance. When I run python manage.py validate I get this error Error: No module named mysql

Re: django-extensions - "Error: no module named django_extensions"

2010-12-08 Thread Victor Hooi
heya, Thanks for the reply. I'm fairly sure it is in the PYTHONPATH. I'm using virtualenvs and pip to install, so it should be there in the system-wide Python directory for that environment. Also, as per my first post, I can import it fine from a Python shell, it's just it seems to act up wit

Re: django-extensions - "Error: no module named django_extensions"

2010-12-08 Thread Christophe Pettus
On Dec 8, 2010, at 6:48 PM, Victor Hooi wrote: > Not sure what's going on here? Is the django_extensions module on your PYTHONPATH? -- -- Christophe Pettus x...@thebuild.com -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this g

django-extensions - "Error: no module named django_extensions"

2010-12-08 Thread Victor Hooi
extensions Whenever I try to run any manage.py commands in my project, I get an error: Error: No module named django_extensions In my settings.py, I have: INSTALLED_APPS = ( 'django_extensions', In the Python shell,I can do a "import django_extensions" and it imports fine with

Re: Error: No module named admindjango.contrib.auth

2010-11-10 Thread Łukasz Rekucki
On 10 November 2010 18:39, Harry wrote: > Trying to follow Part 2 of the Django documentation > >>>> python manage.py syncdb throws this when configuring admin > 'Error: No module named admindjango.contrib.auth' > More errors if I try to include admin docs. &

Error: No module named admindjango.contrib.auth

2010-11-10 Thread Harry
Trying to follow Part 2 of the Django documentation >>> python manage.py syncdb throws this when configuring admin 'Error: No module named admindjango.contrib.auth' More errors if I try to include admin docs. 1) Need to know where I can see which modules are installed 2) Why

Re: django-cms error: no module named simplesite.urls

2010-11-04 Thread Karim Gorjux
On Thu, Nov 4, 2010 at 19:35, Karim Gorjux wrote: > Hi all, I'm just taking a look to the django-cms. I followed all the > instruction, but when I try to connect to the site I get this error my mistake. Was the settings.py wrong! :-| -- K. Blog Personale: http://www.karimblog.net -- You recei

django-cms error: no module named simplesite.urls

2010-11-04 Thread Karim Gorjux
Hi all, I'm just taking a look to the django-cms. I followed all the instruction, but when I try to connect to the site I get this error - log - File "/home/karim/Projects/e_dcms/lib/python2.6/site-packages/django/core/ser

Re: help setting 'apps' folder Error: No module named registration

2010-09-22 Thread justin jools
wrote: > I have setup 'apps' folder with __init__.py inside and > 'registration' app inside 'apps' > > I then refer to it with: > 'apps.registration' in installed_apps/settings.py > > When I run syncdb it gives error: > > Error

help setting 'apps' folder Error: No module named registration

2010-09-21 Thread justin jools
I have setup 'apps' folder with __init__.py inside and 'registration' app inside 'apps' I then refer to it with: 'apps.registration' in installed_apps/settings.py When I run syncdb it gives error: Error: No module named registration -- You received th

Re: error: no module named...

2010-08-25 Thread Wendy
AHA! I've been bitten by that one before. I was fooled by the dash in the way it's named elsewhere. Thanks so much Piotr, looks like that was the problem, and I learned something about the naming of modules. Seems to be behaving now, Wendy On Aug 25, 11:18 am, Piotr Kilczuk wrote: > > Installed

Re: error: no module named...

2010-08-25 Thread Piotr Kilczuk
> Installed /Library/Python/2.6/site-packages/django_sorting-0.1- > py2.6.egg > Processing dependencies for django-sorting > (just specifying 'django-sorting', in installed apps in settings file) Are you sure it should be 'django-sorting' not 'django_sorting' (with underscore)? - is a minus in py

error: no module named...

2010-08-25 Thread Wendy
jango-sorting 0.1 to easy-install.pth file Installed /Library/Python/2.6/site-packages/django_sorting-0.1- py2.6.egg Processing dependencies for django-sorting Finished processing dependencies for django-sorting wendys-mac-pro-3:mysite wendy$ python manage.py runserver Error: No module named django-so

Re: Error: No module named tp.urls | Exception Type: ImportError

2010-08-22 Thread AJ
ROOT_URLCONF = 'tp.urls' Just saw this in my settings.py --AJ On Aug 22, 8:33 pm, Aman wrote: > I recently installed Django on my personal Ubuntu Dev Server and have > been trying with mod_wsgi (as mod_python is officially dead). I just > had some breakthrough where I could see a little pro

Re: Error: No module named tp.urls | Exception Type: ImportError

2010-08-22 Thread AJ
ROOT_URLCONF: 'tp.urls' I just saw that line in my settings.py --AJ ` On Aug 22, 8:33 pm, Aman wrote: > I recently installed Django on my personal Ubuntu Dev Server and have > been trying with mod_wsgi (as mod_python is officially dead). I just > had some breakthrough where I could see a little

Error: No module named tp.urls | Exception Type: ImportError

2010-08-22 Thread Aman
I recently installed Django on my personal Ubuntu Dev Server and have been trying with mod_wsgi (as mod_python is officially dead). I just had some breakthrough where I could see a little progress as a Django error and now I am stuck. Could you please tell me what might be wrong here? Debug Messa

RE: 'django.contrib.comments', Error: No module named comments.

2010-07-12 Thread justin jools
Oops! I had 'comments' in my settings.py installed apps for some reason... removed and works fine -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group

RE: 'django.contrib.comments', Error: No module named comments.

2010-07-12 Thread justin jools
Oops! I had 'comments' in my settings.py installed apps for some reason... removed and works fine -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group

Re: 'django.contrib.comments', Error: No module named comments. Can someone explain why?

2010-07-12 Thread Oleg Lomaka
You already have correct 'django.contrib.comments' in INSTALLED_APPS. Why did you add another 'comments' as last element? On Jul 12, 2010, at 4:14 PM, justin jools wrote: > I've set up basic blog with, all running fine but when I runserver I > get Error: No modu

'django.contrib.comments', Error: No module named comments. Can someone explain why?

2010-07-12 Thread justin jools
I've set up basic blog with, all running fine but when I runserver I get Error: No module named comments. I've checked the Python path (below) and the app/function is there. Can someone explain why it is isn't finding this when it finds all other installed apps e.g. markup, taggin

django-autofixture giving import error (no module named keyczar)

2010-06-22 Thread watad
hi all did anyone used django-autofixture , i followed the instructions on this link : http://pypi.python.org/pypi/django-autofixture/0.2.2 i installed django-autofixture added the 'autofixture' to my INSTALLED_APPS for example my app name is company , my model name is product i use this command :

Re: Error: No module named pollsdjango.contrib.admin

2009-12-14 Thread puraV
Thanks Karen I was having this issue as well no need to ask! you rock! On Nov 8, 6:01 pm, Karen Tracey wrote: > On Sun, Nov 8, 2009 at 11:58 AM, Zeynel wrote: > > > Hi again, > > > Thanks for the help so far. > > > I am now working on the part 2 of the tutorial. > > > I updated the INSTALLE

Re: Error: No module named polls

2009-11-30 Thread Rafael Vieira
Please Baba send-me your project. I want see your error 2009/11/30 Baba Samu > 2.6 > > On Nov 30, 8:54 pm, Rafael Vieira wrote: > > what python's version you are using? > > > > 2009/11/30 Baba Samu > > > > > > > > > thanks, but i have tried changing the database_name to DATABASE_ENGINE > > > =

Re: Error: No module named polls

2009-11-30 Thread Baba Samu
2.6 On Nov 30, 8:54 pm, Rafael Vieira wrote: > what python's version you are using? > > 2009/11/30 Baba Samu > > > > > thanks, but i have tried changing the database_name to DATABASE_ENGINE > > = 'sqlite3'  and database name to DATABASE_NAME = 'poll.db' > > > and i still get the same message

Re: Error: No module named polls

2009-11-30 Thread Rafael Vieira
what python's version you are using? 2009/11/30 Baba Samu > thanks, but i have tried changing the database_name to DATABASE_ENGINE > = 'sqlite3' and database name to DATABASE_NAME = 'poll.db' > > and i still get the same message. > > maybe i should delete n start again since im just followi

Re: Error: No module named polls

2009-11-30 Thread Baba Samu
thanks, but i have tried changing the database_name to DATABASE_ENGINE = 'sqlite3' and database name to DATABASE_NAME = 'poll.db' and i still get the same message. maybe i should delete n start again since im just following the tutorial and i have this inconsistencies at the very beggining..

Re: Error: No module named polls

2009-11-30 Thread DGSpotman
I had a similar problem yesterday (I'm also new), and again, it was because of capitalization. For some reason my settings.py file got renamed to SETTINGS.py. Don't know how that happened, but when I reset the filename to all lower case, things worked. Hope this helps, Michael On Nov 30, 10:21 a

Re: Error: No module named polls

2009-11-30 Thread Rafael Vieira
Hi, do you have change file settings.py section DATABASE_ENGINE = 'sqlite3', I recommend sqlite3 if you are new in django; and in Section DATABASE_NAME use your name database .db for example DATABASE_ENGINE = 'sqlite3' DATABASE_NAME = 'mybanco.db' Sorry about my text but i am brazilian and my e

Re: Error: No module named polls

2009-11-30 Thread Baba Samu
first of all thank very much. the problem was i named the folder 'POLLS', in stead of 'polls' it seems to be case sensitive anyway, i changed it and now i get Error: Django doesn't know which syntax to use for your SQL statements, because you haven't specified the DATABASE_ENGINE setting. Ed

Re: Error: No module named polls

2009-11-30 Thread Radhikavk
Vardhan Varma-2 wrote: > > did you named your project as 'mysite' and your app as 'polls' ... > also make sure __init__.py exists inside directory polls (manage.py should > create that ). > > hope that helps, > > --Vardhan > > > > > Have you given your projevt name as mysite and applicat

Re: Error: No module named polls

2009-11-29 Thread Vardhan Varma
did you named your project as 'mysite' and your app as 'polls' ... also make sure __init__.py exists inside directory polls (manage.py should create that ). hope that helps, --Vardhan On Sun, Nov 29, 2009 at 7:12 PM, Baba Samu wrote: > Hi, > > Following the tutorial when i have "python mana

Error: No module named polls

2009-11-29 Thread Baba Samu
Hi, Following the tutorial when i have "python manage.py sql polls" i get error message "No module named polls" I have modified settijng.py to. INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'mys

Re: Error: No module named pollsdjango.contrib.admin

2009-11-08 Thread Zeynel
Thank you!! On Nov 8, 12:01 pm, Karen Tracey wrote: > On Sun, Nov 8, 2009 at 11:58 AM, Zeynel wrote: > > > Hi again, > > > Thanks for the help so far. > > > I am now working on the part 2 of the tutorial. > > > I updated the INSTALLED_APPS with 'django.contrib.admin': > > > INSTALLED_APPS = ( >

Re: Error: No module named pollsdjango.contrib.admin

2009-11-08 Thread Karen Tracey
On Sun, Nov 8, 2009 at 11:58 AM, Zeynel wrote: > > Hi again, > > Thanks for the help so far. > > I am now working on the part 2 of the tutorial. > > I updated the INSTALLED_APPS with 'django.contrib.admin': > > INSTALLED_APPS = ( >'django.contrib.auth', >'django.contrib.contenttypes', >

Error: No module named pollsdjango.contrib.admin

2009-11-08 Thread Zeynel
essions', 'django.contrib.sites', 'mysite.polls' 'django.contrib.admin' ) and tried to run manage.py syncdb but I get the error Error: No module named pollsdjango.contrib.admin I am guessing this is another PATH error. Can anyone help. Thanks. --~--~---

Re: Error: no module named manager

2009-04-15 Thread Daniel Sisco
py > > > settings.py has been modified to include postcal as such: > > > ADDITIONAL_APPS = ( > >     'recaptcha', > >     'pingback', > >     'watchlist', > >     'blogroll', > >     'robots', > >     

Re: Error: no module named manager

2009-04-15 Thread Daniel Roseman
.contrib.admindocs', >     'gravatar', >     'userdata', >     'thumbnail', >     'postcal', >     ) > > Calls to manage.py that worked fine before, now throw the error: > "Error:

  1   2   >