Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am very new at python and I am getting this error:

Traceback (most recent call last):
  File "mountain.py", line 28, in ?
    from toolkit.interface import interface
ImportError: No module named toolkit.interface

Python is installed in a local directory:

My directory tree is like this:

(local directory)/site-packages/toolkit/interface.py

My code is in here

(local directory)/site-packages/toolkit/examples/mountain.py

To run the example I do python mountain.py, and in the code I have:

from toolkit.interface import interface

And i get the error that I wrote, I have already checked the sys.path and in the sys.path I have the directory /site-packages, also I have the file __init__.py.bin in the toolkit folder to indicate to python that this is a package. I also have a __init__.py.bin in the examples directory.

I do not why Python cannot find the file when is in the sys.path, any ideas? Can be a permissions problem? Do I need execution permission?

share|improve this question
@S.Lott: indeed the original question said init.py.bin, maybe that's the whole point... (?) – Federico A. Ramponi Dec 3 '08 at 21:33
@Federico Ramponi: I just formatted it. I didn't try to answer it. – S.Lott Dec 3 '08 at 21:46
@S. Lott Another problem that was confuising me was to have two installations one did by the root and another one did by me – Eduardo Jan 7 '09 at 5:45
I'm having the same ImportError: problem, but I feel it might be because I have multiple Python installations on my Mac and they're not linked properly to my project. Any suggestions? – PolyShell 4 hours ago

6 Answers

up vote 43 down vote accepted

Based on your comments to orip's post, I guess this is what happened:

  1. You edited __init__.py on windows.
  2. The windows editor added something non-printing, perhaps a carriage-return (end-of-line in Windows is CR/LF; in unix it is LF only), or perhaps a CTRL-Z (windows end-of-file).
  3. You used WinSCP to copy the file to your unix box.
  4. WinSCP thought: "This has something that's not basic text; I'll put a .bin extension to indicate binary data."
  5. The missing __init__.py (now called __init__.py.bin) means python doesn't understand toolkit as a package.
  6. You create __init__.py in the appropriate directory and everything works... ?
share|improve this answer
15  
ah i love detective work – Claudiu Aug 25 '10 at 2:51
5  
Also, python -c 'import sys; print sys.path' helps -- sometimes the user has placed the files in a path not scanned. – mikebabcock Feb 28 '12 at 15:06

Does

(local directory)/site-packages/toolkit

have a __init__.py?

To make import walk through your directories every directory must have a __init__.py file.

share|improve this answer

now the problem is solved, I will write a resume of the things that were grong and the solution:

The file needs to be called __init__.py, exactly that, if the extension is different such as my case .py.bin then python cannot move through the directories and then it cannot find the modules. To edit the files you need to use a linux editor, such as vi, nano..., if you use a windows editor this will write some hidden characters.

Another problem that was affecting was that I had another python version installed by the root, so if someone is working with a locally installation of python, be sure that the python that is running the programs is the local python, to check this just do which python, and see if the executable is the one that is in your local directory. If not change the path but be sure that the local python directory is before than the other python.

Thanks to all for the help

share|improve this answer
A problem I got was that a module was (re)installed by pip with only the root user to access it, so the user that ran the program didn't see it. – Janis Jun 8 '12 at 13:26

On *nix, also make sure that PYTHONPATH is configured correctly, esp that it has the format

 .:/usr/local/lib/python 

(mind the .: at the beginning, so that it can search on the current directory, too)

share|improve this answer
2  
It may also be .:/usr/lib/python, .:/usr/lib/python2.6, .:/usr/lib/python2.7 and etc. depending on the version – Nikita Volkov Apr 16 '12 at 8:26

Yup. You need the directory to contain the init.py file, which is the file that initializes the package. Here, have a look at this.

The __init__.py files are required to make Python treat the directories as containing packages; this is done to prevent directories with a common name, such as string, from unintentionally hiding valid modules that occur later on the module search path. In the simplest case, __init__.py can just be an empty file, but it can also execute initialization code for the package or set the __all__ variable, described later.

share|improve this answer

To mark a directory as a package you need a file named __init__.py, does this help?

share|improve this answer
I already have a file called init.py.bin, If I change the name to init.py, then I get this error: /__init__.py", line 1 "utilities", "demo"] ^ SyntaxError: invalid syntax – Eduardo Dec 3 '08 at 21:38
What's in init.py? Post that as part of your question, please. – S.Lott Dec 3 '08 at 21:47
There is nothing, it is empty, It was with the package that I download, do I need to write something in the file?. – Eduardo Dec 3 '08 at 21:50
@S.Lott: you don't need to put anything in your init.py right? – igorgue Dec 3 '08 at 21:52
@Eduardo. Your init.py gets an error. And you say it's empty. That's difficult to reconcile. And it can't be called init.py.bin -- Python would ignore this file. Typically, it can have nothing in it. – S.Lott Dec 3 '08 at 21:57
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.