Import error, No module named xxxx

Question:

I have a project having the structure

/example
../prediction
....__init__.py
....a.py

PYTHONPATH is pointed to /example

now I open the python in terminal and type

import prediction

it succeeded, but if I type

import prediction.a

it returns error

ImportError: No module named 'prediction.a'; 'prediction' is not a package

why is that? isn’t that already imported as a package

Asked By: Hello lad

||

Answers:

The behavior you are seeing can be caused if there is a module (foo.py) or package (foo/__init__.py) in your current directory that has a conflicting name.

In your case, I suspect there is a file named prediction.py, and you’re getting that instead of the prediction package in your examples directory.

Answered By: larsks
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.