Tagged Questions

3
votes
1answer
182 views

Python/Django import error os.path

I'm currently working on a Django-Project that amongst others has to read different file-formats. Each format got its own reading-script. The formats to be used depend on a choice, that is why the ...
3
votes
1answer
543 views

Bizarre error importing settings in django

I have many projects working in ubuntu with python2.7 and virtualenv/virtualenvwrapper, in my work some developers works with macosx and windows, generally I create the project as usual: ...
2
votes
2answers
1k views

ImportError: cannot import name signals

I'm using Django 1.3.0 with Python 2.7.1. In every test I write the following imports I get the importError above: from django.utils import unittest from django.test.client import Client The full ...
2
votes
4answers
3k views

Django + mod_wsgi + apache: ImportError at / No module named djproj.urls

I'm trying to deploy my Django application on my linode server with apache and mod_wsgi. file: /srv/www/site.com/djproj/django.wsgi import os import sys sys.path.append('/srv/www/site.com/djproj') ...
2
votes
1answer
107 views

trunk works tag doesn't? ---ImportError: No module named 2.1.2

Very confused. In my workspace, the trunk works fine when I do a: python ./manage.py runserver 9090 However when I tag it @ 2.1.2 and then check it out clean from the repository to a temporary ...
2
votes
1answer
634 views

Django + Virtualenv: manage.py commands fail with ImportError of project name

This is blowing my mind because it's probably an easy solution, but I can't figure out what could be causing this. So I have a new dev box and am setting everything up. I installed virtualenv, ...
1
vote
0answers
42 views

django virtualenv mimeparse import error

I can't for the life of me figure out what I'm doing wrong, here's what's going on: I'm running google appengine with django on my local dev this is happening from within a virtualenv running ...
1
vote
1answer
29 views

geoDjango - ImportError: cannot import name SpatialBackend

Im trying to make an app with geoDjango but I'm actually having some problem to put it running. When I excecute the "python manage.py syncdb" command, I have the following error: File ...
1
vote
0answers
82 views

Spurious ImportErrors (with modules importing submodules?)

I have a problem that I don't really know where to begin solving. Maybe it'll ring someone's bell. TLDR: a Django app crashes and upon restart it runs but fails to import some modules. Upon another ...
1
vote
2answers
95 views

Importing a module which have the same name with a system module

My situation is similar to one in this question... The difference is, In our python/django project, we have a directory called utils, which keeps basic functions... Sometimes, we need to test some ...
1
vote
1answer
117 views

ImportError: cannot import name NO_DEFAULT

I'm trying to run a Django site's manage.py script, but it fails with the following error: Traceback (most recent call last): File "manage.py", line 2, in <module> from ...
1
vote
1answer
969 views

500 internet server error error_log:TemplateSyntaxError: Caught ImportError while rendering: No module named friends

Recently I am using django and mod_wsgi on Apache. I am follow the following steps found in a webpage: "My application in / mnt / www /, the name of the called mysite, apache and created in the ...
1
vote
1answer
291 views

What could cause a Django error when debug=False that isn't there when debug=True

Using the development server, it works with debug=True or False. In production, everything works if debug=True, but if debug=False, I get a 500 error and the apache logs end with an import error: ...
1
vote
3answers
1k views

ImportError and Django driving me crazy

OK, I have the following directory structure (it's a django project): -> project --> app and within the app folder, there is a scraper.py file which needs to reference a class defined within ...
0
votes
1answer
36 views

Django Management Command ImportError

I have problem with imported module into my qsl/management/commands/<customcommand>.py file. in fact, my app structure is : qsl/management/commands/ : dir for my management commands ...
0
votes
1answer
121 views

Django Form Wizard, SessionWizardView Import Error

I want to implement a django form wizard. I read the documentation about it but when I add the 'from django.contrib.formtools.wizard.views' import SessionWizardView' to my view, i get "No module ...
0
votes
2answers
268 views

ImportError: No module named models?

I am using Django and i keep receiving this error for my group app, i have checked all my import settings and everything is fine. My registration and profile apps run smoothly but why is this app ...
0
votes
2answers
91 views

Importing view functions to models.py - triggering via override save method

I would like to trigger a view function from within the save method of a model, in order to write or update an xml file associated with the instance. #models.py from myapp.views import updateXML, ...
0
votes
1answer
386 views

manage.py runserver - ImportError: No module named MYSITE

I can't get the dev environment running! I've been following the instructions here (tutorial on DjangoProject page). When I type manage.py runserver I get the following error: ImportError: No ...
0
votes
0answers
92 views

Seemingly weird python import behaviour (Django, sorethumbnail)

Having what seems to be an age old problem of import weirdness. My set up is a standard django project, with sorethumb ( http://code.google.com/p/sorethumb/ ) installed by cloning and then ...
0
votes
2answers
173 views

Django Import errors on production environment

i have a trouble with run django project on production server with Apache and mod_wsgi. This Error happened when i'm start apache and go to site first time or go from other: ImportError at / ...
0
votes
1answer
93 views

Weird django admin importerror

I am getting a weird import error when I try to access admin: http://dpaste.com/292489/ It doesn't seem to be related to my code and I have setup all the proper admin settings and urls, since admin ...
0
votes
2answers
968 views

Django ImportError: Could not import settings 'settings' - No module named csrf

I am just starting to fiddle around with django. First I made a small app on my windows machine and verified it worked fine Then, I zipped the entire project, and opened the zip on a linux machine. ...
0
votes
0answers
72 views

ImportError when trying to import from module directory. (Django)

Imagine a classic Django directory structure. INSTALLED_APPS contains an entry pointing to "myApp". I have models, views, etc. in that directory and it works fine. I've created a file called ...
0
votes
1answer
378 views

Django Celery causes an import error on runserver command

When I issue a runserver command, an ImportError is raised from djcelery (Django Celery). % python manage.py runserver ...
0
votes
1answer
186 views

Using Django ORM outside of Django throws ImportError on assigning to the FK

When using the Django ORM from an external shell, using a model with a ForeignKey field an ImportError is thrown when assigning to it. And here is a paste of my shell sessions both from ./manage.py ...
0
votes
2answers
168 views

Import from a Django project with a different top-level folder name

I recently setup a deployment solution for my Django project using Fabric. The basic workflow being: Check out the latest source from git on the server. Copy it to a 'releases' directory and add a ...
0
votes
1answer
544 views

Django: ImportError: No module named ?z?

Hi I am trying to deploy a django app with uwsgi. I keep getting Import Errors that look like this: ImportError: No module named ?z? -or- ImportError: No module named ?j? -or- ImportError: No ...
0
votes
1answer
257 views

Works using Django development server, but throws import error with Apache using mod_wsgi

I have a Django project that works fine with the development server that comes with it. No errors are produced at all when I use "django manage.py runserver" and the app works fine, but when I try ...