Refers to errors that result from attempting to import a module or library into one's code
1
vote
0answers
16 views
ImportError: DLL load failed: Invalid access to memory location. Using aubio in Python
For a schoolproject I need to make use of the aubio library. However, I have a problem compiling it for Windows.
I downloaded the latest source from his git (0.4.0 alpha). Then I compiled it using ...
0
votes
1answer
19 views
Distinguish between ImportError because of not found module or faulty import in module itself in python?
I have a few modules in python, which are imported dynamicly and all have the same structur (plugin.py, models.py, tests.py, ...). In the managing code i want to import those submodules, but for ...
0
votes
0answers
54 views
NLTK pos_tag ImportError from mtrand import *
When I run this code I get an error (below):
import nltk
sentence = """At eight o'clock on Thursday morning"""
tokens = nltk.word_tokenize(sentence)
nltk.pos_tag(tokens)
The traceback is:
...
0
votes
1answer
30 views
Trying to use new package
Basically I've downloaded a package for the WorldWind JDK that allows for rendering of 3ds models. However, for the life of me, I've been unable to use any of these files using standard imports, and ...
1
vote
1answer
31 views
Python Circular Import - Works locally but not on server
Background Information
Python 2.7.1 (r271:86832) on server and locally
Using virtualenv with all dependencies the same
Local Python is 64 bit
Server Python is 32 bit
Using Django
Actual Problem
...
0
votes
0answers
22 views
Error importing django-templated-mail
I'm trying to install a module so I can get my app to send emails, so I installed in my app https://github.com/bradwhittington/django-templated-email, but, even I've followed all instructions, I'm ...
0
votes
0answers
23 views
Error: No module named multiarray while running code about SVM on top of hadoop
I am struggling to running SVM algorithm in parallel by using hadoop.
I found that parallel SVM had been implemented in Python language on top of hadoop.
The following below is the code that I have ...
0
votes
0answers
11 views
py2exe ImportError: No module named cssselect
I used pyquery in my App, when I run main.exe in the dist directory, the error occures:
Traceback (most recent call last):
File "main.py", line 4, in <module>
File "zipextimporter.pyo", ...
0
votes
1answer
56 views
Receiving Import Error: No Module named ***, but has __init__.py
I understand that this question has been asked several times but after reading them, and making the suggested fixes, I'm still stumped.
My project structure is as follows:
Project
|
src
...
0
votes
1answer
47 views
Python Django “ImportError: No module named hashcompat”
I'm learning python + Django by reading 《beginning django e-commerce》, after I have installed django-db-log, when running $python manage.py runserver, there is a problem.
Unhandled exception in ...
1
vote
1answer
97 views
python - importError: no module named pysphere
I am able to type the following into python.exe to create a session to Vmware Esxi
from pysphere import VIServer
server = VIServer()
server.connect("myserver", "user", "password")
When I save the ...
1
vote
1answer
36 views
django Error : Caught ImportError while rendering: No module named comments
I am currently porting over some django 0.97 code to django 1.3.1 code.
I keep getting the following django error:
TemplateSyntaxError at /dir1/dir2/
Caught ImportError while rendering: No module ...
0
votes
0answers
59 views
module import error in pandas
I installed pandas module. It required the latest version of numpy, and I had the old one pip installed the pandas module which also installs all its dependencies including numpy. When I try to import ...
0
votes
1answer
22 views
from Gui import * in python 3?
I'm trying this:
import os, sys
from Gui import *
import Image as PIL
import ImageTk
class ImageBrowser(Gui):
def __init__(self):
Gui.__init__(self)
self.button = ...
0
votes
0answers
52 views
ImportError: Module use of python26.dll conflicts with this version of Python
I use Python 3.2.3
Tonight I tried to install requests from http://docs.python-requests.org/en/latest/ by pip and easy_install, but it doesn't work. I have error when trying to import it. So I ...
0
votes
1answer
25 views
Python ImportError for strptime in spyder for windows 7
I can't for the life of me figure out what is causing this very odd error.
I am running a script in python 2.7 in the spyder IDE for windows 7. It uses datetime.datetime.strptime at one point. I can ...
2
votes
2answers
53 views
Python Import Class With Same Name as Directory [duplicate]
Lets say I have the following python source file layout:
lib/foo.py
lib/foo/bar.py
and then in my source code:
from foo import gaz
I get an import error:
ImportError: No module named foo
How ...
0
votes
1answer
203 views
File “<string>”, line 6, in <module> ImportError: No module named Crypto.Cipher
I try to install "Userful MultiSeat-X64-5.0.1 ..." in Ubuntu 04.12 LTS x64, and encountered the following error at the end of the installation:
File "<string>", line 6, in <module>
...
2
votes
0answers
65 views
Import errors when running nosetests that I can't reproduce outside of nose
I'm running into a mysterious import error when using nosetests to run a test suite that I can't reproduce outside of nose. Furthermore, the import error disappears when I skip a subset of the tests.
...
1
vote
0answers
52 views
Extending Python with C - ImportError: can't map
I'm trying to extend Python with C. My C code compiles and I get a .so file, but then on import to Python, I get this error:
ImportError: dlopen(/Users/.../python/PYC/isprime.so, 2): no suitable ...
0
votes
0answers
149 views
When trying to import a CSV file into SQL Server temp table I get null value instead of the data
I am trying to import data from a CSV into a temp table. One of my columns is zone which has 3 digits number or something like R01, R02, R03, R04.......
The problem is that when I upload the file if ...
0
votes
1answer
69 views
Scrapy import error: No module named items
I set-up my project using
scrapy startproject can411
so the __init__.py files are present.
This is the code within my spider canada_411Spider.py
(not named the same as the project folder)
from ...
0
votes
0answers
18 views
how to use gnu trove in eclipse
I downloaded the gnu trove 3.03 and extract it to a local directory. then I add the trove-3.03-src.jar to my project in eclipse, but there is still import error like The import ...
0
votes
1answer
32 views
qsub python import
I'm running a job on the cluster for the first time. I run it with the following command:
qsub -cwd -S /usr/bin/python myScript.py
I have a python script that starts with:
import time
import ...
-3
votes
1answer
157 views
python nltk issue ImportError - cannot import multiple nltk modules [closed]
My code looks like this: (Python 2.7.3)
import nltk
from nltk.tokenize import sent_tokenize, word_tokenize
from nltk.stem.wordnet import WordNetLemmatizer
from nltk.text import Text, TextCollection
...
0
votes
1answer
64 views
Sphinx: how to exclude imports in automodule?
I have a Raspberry Pi project written in Python that uses RPi.GPIO module. All the work on the code is done on a Windows box where RPi.GPIO will not install and every time I try to run autodoc it ...
0
votes
1answer
252 views
python: pytz package installation issue: ImportError: No module named pytz
I installed the pytz package on my windows7 machine via:
C:\Users\name\Downloads\pytz>easy_install --upgrade pytz
Searching for pytz
Reading http://pypi.python.org/simple/pytz/
Reading ...
0
votes
1answer
104 views
Python ImportError on Ubuntu: No module named app.urls
I recently installed Ubuntu with Apache, Python and Django for a school project. I am having issues with actually getting it up and running though. I followed this tutorial
Everything worked as ...
0
votes
1answer
51 views
ImportError: cannot import name array, when importing urllib2
I am getting below error when trying to import the urllib2:
>>> import urllib2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ...
0
votes
1answer
42 views
rpy2 module not working in Python3.2
I am trying to import the rpy2 (version2.3.4) library into Python (version3.2.3) on a Ubuntu 12.10 machine. The rpy2 documentation says that rpy2 works under all Python 3 versions and I am also ...
0
votes
1answer
66 views
Regarding python error : “ImportError: cannot import name Dynamic”
I am facing a strange error while executing a python code. The following code is a small snippet of the python code I am executing:
#samplecode.py
import time
from datetime import datetime
...
1
vote
0answers
105 views
Android ADT Eclipse: com.android.common and com.android.ex imports could not be resolved
I'm trying to build Google's open-source Calendar app for Android (source here: https://github.com/android/platform_packages_apps_calendar), so that I may pick apart its code a little bit. When I ...
2
votes
1answer
322 views
Import Error: No module named 'utils'
Please excuse me I'm a newbie. I'm trying to use the fuzzywuzzy module from seatgeek. I am using Python 3
Initially, I was getting this error:
from fuzzywuzzy import fuzz
ImportError: cannot ...
1
vote
0answers
35 views
Import Error in zope.interface.registry in python
I am installing a project in virtual environment. I am getting error
from zope.interface.registry import Components
Traceback (most recent call last):
File "<console>", line 1, in ...
-1
votes
2answers
185 views
python: ImportError: No module named
I'm beginning to learn python,
but when I try to import modules from an ather file I get this error:
Traceback (most recent call last):
File "./test", line 4, in <module>
from multip import ...
0
votes
0answers
71 views
cannot import name SIGNATURE_HMAC
I am running the django example provided with python-social-auth, and am getting the following 500 server error.
ImportError at /login/bitbucket/
cannot import name SIGNATURE_HMAC
Request Method: GET
...
0
votes
0answers
123 views
NLTK tokenizer ImportError: No module named copy_reg
Short information: I'm running python 3.0 and have NLTK installed (switched back from 3.3 because NLTK has no support for 3.3 which sucks because all other extensions I have are for 3.3)
When trying ...
1
vote
1answer
163 views
“ImportError: No module named” when trying to run Python script
I'm trying to run a script that launches, amongst other things, a python script. I get a ImportError: No module named ..., however, if I launch ipython and import the same module in the same way ...
1
vote
2answers
120 views
Running scrapy from script (beginner)
I am starting to get into python and yes, I have searched this site and the web for an answer, but somehow I really can't get it to run.
I've created a spiderclass EbaySpider, residing in ...
3
votes
1answer
428 views
ImportError: No module named httplib2
I have a Python 2.7 GAE app that already has a lot of functionality. Now I want to integrate with a Google API.
Within my IDE (PyCharm) running on Mac OSX, I added the following lines to my app's ...
1
vote
1answer
179 views
ImportError: cannot import name ceil_shift [closed]
I'm receiving this error today, before was working perfectly.
ImportError: cannot import name ceil_shift
All i have is:
#!/usr/bin/python -W ignore::UserWarning
import urllib;
import urllib2;
...
0
votes
0answers
98 views
Installing cx_Freeze in Linux
I am installing cx_Freeze in Linux but it doesn't work:
[root@STATE lib]# rpm -ivh /root/cx_Freeze-4.3.1-py33-1.i386.rpm
Preparing... ########################################### [100%]
...
-1
votes
1answer
79 views
Basics in running a module in python
I'm a total newbie to Python and I'm having trouble running a simple module in IDLE.
Is there anything to look out for if you create a module in a text editor?
If it is saved on my desktop, I'll ...
0
votes
1answer
128 views
Importing pocketsphinx not working python 3.2 (Windows). “ImportError: No module named pocketsphinx”
I'm trying to use pocketsphinx on python 3.2 but I'm very confused. I've placed the builded packages in the site-packages directory, made sure I'm using the right audio file format .According to the ...
2
votes
2answers
2k views
Import excel file in sql server 2008
I know this question might be repeated. But what I get issue with this is different. I have already created table "CRM_Doctor_Budget" with no data.
I want to insert data in this table from excel ...
1
vote
0answers
86 views
Import error with module _ssl for Python 3.3
I am programming in Python 3.3 on the latest version of Ubuntu. I am writing code for a project involving a library that works with Twitter. Here is the output from the terminal I have:
Traceback ...
-3
votes
1answer
105 views
Including pygame in google app engine
I'm trying to include a PyGame library in my Google App Engine aplication:
> import pygame
But I've got an import error:
> from pygame.base import *
ImportError: No module named base
How ...
0
votes
0answers
23 views
Installing multivio - ImportError [closed]
I am trying to install multivio (www.multivio.org) on a virtualbox running ubuntu 12.10. I have installed all required packages successfully, but encounter an error when trying to install the actual ...
0
votes
0answers
33 views
django fastcgi can't find app.urls
My first django-cms app. It is in a directory called test0, the full path is /Users/http/run/test0.
Additionally I'm using:
Python 2.7.1
django 1.3.1
When I run the app as fastcgi (my preference) ...
0
votes
0answers
31 views
Rails Importing Excel files - pause/resume functions
Thanks in Advance for your replies/answers.
I am working on a functionality where there is a huge file to be imported, my favorite would be to run as background process.
However, is there a way to ...





