Tagged Questions

10
votes
3answers
3k views

How to use OpenCV in Python?

I have just installed OpenCV on my Windows 7 machine. As a result I get a new directory: C:\OpenCV2.2\Python2.7\Lib\site-packages In this directory I have two files: cv.lib and cv.pyd. Then I try ...
10
votes
3answers
3k views

PyQt 4.7 - ImportError after installing on Windows

I've been trying to install PyQt 4.7 on Vista, but I am getting an ImportError when I try to do: from PyQt4 import QtCore, QtGui. ImportError: DLL load failed: The specified module could not be ...
5
votes
1answer
10k views

Python setuptools import error (Using NetBeans)

I tried to find a question that would answer to this question but wasn't succesful, so I made a new question. I'm trying to compile my old Python Tic Tac Toe game in NetBeans, but I get the error ...
3
votes
5answers
167 views

Relative import problems in Python 3

Python imports drive me crazy (my experience with python imports sometime doesn't correspond at all to idiom 'Explicit is better than implicit' :( ): [app] start.py from package1 import ...
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: ...
3
votes
1answer
764 views

ImportError: [libraryname].so: undefined symbol: [function name]

I'm extending my Python program with a C module that uses the GstPhotography interface for GStreamer. My C module compiles fine, but when I try running it from Python, I get this error: $python ...
3
votes
3answers
2k views

Problem trying to install PyCurl on Mac Snow Leopard

My app needs to use PyCurl, so I tried to install it on my Mac but I found a lot of problems and errors. Requirement: First of all I have to say that the version of Python working on my Mac is 32 bit ...
2
votes
0answers
132 views

py2exe executable generates log file error

Py2exe builds the executable without exceptions. When I run the executable a log file is generated with the following: Traceback (most recent call last): File "ecm2es_gui.py", line 10, in ...
2
votes
1answer
110 views

Python Twitter library: cannot import it

I'm trying this presumably basic thing of importing Python Twitter library. First I got an error in line 52, saying he couldn't upload a json library. That line of code is part of script where the ...
2
votes
1answer
268 views

Python module in path: ImportError raised in mako template

There is an ImportError that has the potential to drive me mad. The situation looks like this: tests/ testWebsite.py website/ __init__.py __main__.py _webtools/ __init__.py ...
2
votes
1answer
609 views

“ImportError: No module named Tkinter” even though I've used Tkinter programs as recent as yesterday and no substantial changes were made?

I'm getting a Tkinter error even though it was imported and used yesterday. I have a Windows 7 OS and am running Python 2, so I'm not sure what I'm supposed to do at this point. My google-fu is weak ...
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
0answers
215 views

Alternatives to imp.find_module?

Background I've grown tired of the issue with pylint not being able to import files when you use namespace packages and divide your code-base into separate folders. As such I started digging into the ...
2
votes
1answer
161 views

python: force non-relative import?

I wanted to make a module called utils/django.py in my project. On the top I have the line: from django.db import models However, it tries to import from itself, and that causes an error. I know I ...
2
votes
1answer
112 views

Strange PYTHONPATH problem

I recently updated my python installation to 2.7 (previously 2.5), and I've noticed a strange problem where I cannot import certain modules that I created. I had no problem before. Normally, I edit ...
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
2answers
252 views

Accessing py2exe program over network in Windows 98 throws ImportErrors

I'm running a py2exe-compiled python program from one server machine on a number of client machines (mapped to a network drive on every machine, say W:). For Windows XP and later machines, have so ...
2
votes
1answer
306 views

Why does import of ctypes raise ImportError?

Python 2.6.2 (r262:71605, Apr 14 2009, 22:40:02) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import ctypes Traceback (most ...
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
226 views

Python ImportError: No module named wx

Im sorry to ask this question again. I have searched and found endles repeats of it both on stackoverflow and also on general google search. Unfortunatly I just cant get my system sorted. I have the ...
1
vote
2answers
91 views

ImportError: No module named _tkinter

I want to use python in c++ code, but it got an error, it is the simplest "hello word" program. It is Ok to import PIL.Image, but for Tkinter, it will output "ImportError: No module named _tkinter". ...
1
vote
1answer
98 views

PyCharm (1.5.4) and Panadas 0.6.0 - ImportError: No module named data

I am using PyCharm (1.5.4) as my python IDE on MacOS 10.6.4. I am tinkering with some code to manipulate stock price data. As part of that I want to import price data from yahoo by using the ...
1
vote
1answer
59 views

Python absolute import in module fails

I have a project which looks like this: my_project/ __init__.py -- empty run.py datacheck/ __init__.py -- empty datacheck.py -- ...
1
vote
2answers
42 views

Import troubles

Here is part of my module: gm.py def avg_list(list): sum = 0 for num in list: sum += num avg = float(sum)/len(list) print avg def median(list): i = len(list) if ...
1
vote
1answer
53 views

Trigger ImportError to test Coverage of Fallback Code

Given code like this in somemod.py: try: Import cStringIO as StringIO except ImportError: import StringIO How can one test the 'fallback' branch? (Use case: trying to achieve 100% ...
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
2answers
195 views

Django Deployment: ImportError: Could not import settings 'settings.py' (Is it on sys.path?): No module named settings.py

Hi All and thank you for taking the time to look at my question. I'm a newbie to Python, thought I have experience in php/mysql. I was just handed a code repository of a django site and asked to get ...
1
vote
1answer
148 views

Virtualenv __future__ module works on command line, but not while running dev_appserver.py

I'm running into a strange error when running App Engine from within my virtualenv. Here is the error: File "/home/matthew/dev/sdks/google_appengine_1.5.2/google/appengine/tools/dev_appserver.py", ...
1
vote
1answer
119 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
267 views

Django: Model.objects.get fails with ImportError exception

I've model which represents settings in my system and I use it from another part of my application so that import has 3 levels WORKING CODE <- Module <- Model Model Variables from django.db ...
1
vote
3answers
64 views

python: library behavior on failed import

Is there any standard practice on how a library should behave, when certain module can't be imported? Should it just let an exception fly or should it rather catch it and exit elegantly with a proper ...
1
vote
1answer
94 views

python/c++ wrapping on Snow Leopard

I create a dynamic library and then using swig under snow leopard but when I import my module it returns always ImportError: No module named blabla. I've all compiled in 64 bit, download and install ...
1
vote
1answer
390 views

PyQt - QtDeclarative import troubles

I am running Ubuntu 10.10, and I installed PyQt 4.7.4 through apt-get. I build a GUI layout with QtDesigner and compile the .ui file to .py using pyuic4. Then I subclass the auto-generated class and ...
1
vote
3answers
312 views

What does ImportError mean in Python?

I try to import a module: import cv And I get the following error message: ImportError: DLL load failed: The specified module could not be found. But if I try to import a library that definitely ...
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
1answer
339 views

Embedding python in C, undefined symbol: PyExc_ImportError

I am trying to write a plug-in for Audacious Media Player that loads a python module. The python embedding code is from the python-2.6 source(embed/Demo). This compiles with the command line, gcc -o ...
1
vote
1answer
231 views

ImportError: cannot import name ModuleA

I have the following stacktrace when I try to import ModuleA: Traceback (most recent call last): File "menu.py", line 9, in ...
1
vote
1answer
339 views

python __import__ from same folder fails

I have a directory structure like so: |- project |- commands.py |- Modules | |- __init__.py | |- base.py | \- build.py \- etc.... I have the following code in __init__.py commands = [] ...
1
vote
4answers
310 views

python import error

what's wrong with my imports? App folder structure: myapp - models/models.py contains SpotModel() - tests/tests.py contains TestSpotModel(unittest.TestCase). tests.py imports "from ...
1
vote
1answer
1k views

Pydev can't find matplotlib modules

I just installed matplotlib on my windows 7 Python 2.6.5 machine with the win32 installer . I've tried some examples from the matplotlib site to test the installation, under Idle everthing works fine ...
1
vote
3answers
144 views

Python Module Importing Issues

I run Windows 7, and I can import built-in modules, but when I save my own script and try to import it in IDLE, I get an error saying that the module doesn't exist. I use the Python text editor found ...
1
vote
3answers
75 views

Why am I encountering an ImportError when I try to 're-import' a module?

I have a series of python modules written which are held in the same directory and I am having trouble with an ImportError. The three modules I am using are draw_menu.py, errors.py and ...
1
vote
3answers
646 views

Python - problem in importing new module - libgmail

I downloaded Python module libgmail from sourceforge and extracted all the files in the archive. The archive had setup.py, so I went to that directory in command prompt and did setup.py install I ...
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 ...
1
vote
2answers
103 views

How do I distinguish “module not found” from “module threw exception” on ImportError?

In Python, import does_not_exist raises ImportError, and import exists exists.py: import does_not_exist will also raise ImportError. How should I tell the difference in code?
1
vote
2answers
125 views

Testing for ImportErrors in Python

We're having a real problem with people checking in code that doesn't work because something's been refactored. Admittedly, this is partly because our developers don't really have any good tools for ...
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 ...

1 2