Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to follow PEP 328, with the following directory structure:

pkg/
  __init__.py
  components/
    core.py
    __init__.py
  tests/
    core_test.py
    __init__.py

In core_test.py I have the following import statement

from ..components.core import GameLoopEvents

However, when I run, I get the following error:

tests$ python core_test.py 
Traceback (most recent call last):
  File "core_test.py", line 3, in <module>
    from ..components.core import GameLoopEvents
ValueError: Attempted relative import in non-package

Searching around I found this and this at SO but not even the accepted answers in those questions work for me. Is there anything I'm missing here?

share|improve this question

2 Answers

up vote 45 down vote accepted

Yes. You're not using it as a package.

python -m pkg.tests.core_test
share|improve this answer
4  
Yes, yes! This is the answer that I've been looking for for hours now! – skyler Aug 30 '12 at 19:50
4  
A gotcha: Note that there is no '.py' at the end! – mindthief Dec 7 '12 at 1:39

To elaborate on @Ignacio's answer: the python import mechanism works relative to the __name__ of the current file. When you execute a file directly, it doesn't have it's usual name, but has "__main__" as its name instead. So relative imports don't work. You can, as Igancio suggested, execute it using the -m option. If you have a part of your package that is mean to be run as a script, you can also use the __package__ attribute to tell that file what name it's supposed to have in the package hierarchy. See http://www.python.org/dev/peps/pep-0366/ for details.

share|improve this answer
+1 very helpful in understanding what's going on. – mindthief Dec 7 '12 at 1:21
4  
Took a while for me to realize you can't run python -m core_test from within the tests subdirectory - it has to be from the parent, or you have to add the parent to the path. – Aram Kocharyan Feb 18 at 8:31

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.