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 develop in eclipse using pydev plugin. When I run project in eclipse everything works fine. But when I try to run it from command line I get an Import error. I have a dir structure like this:

      TGRParser 
        |----tgr
              |--graph
              |--main
              |   |-- main.py
              |   |-- __init__.py  
              |--parser
                  |--__init__py
                  |--parserClass.py

Now I have a class Main in module main (main.py) in package main (TGRParser/tgr/main). Now in class Main I try to call

    from tgr.parser.parserClass import Parser

It works fine from within eclipse but doesnt work at all from command line. I checked sys.path. They are both the same in cmd line and in eclipse... SO there is something I am missing :) thanks it says

 File "main.py", line 6, in <module>
from tgr.parser.parserClass import Parser

ImportError: No module named tgr.parser.parserClass

share|improve this question
Do you have _init_.py files in all of those packages? – campos.ddc Feb 16 '12 at 19:46

2 Answers

up vote 0 down vote accepted

Add the TGRParser directory to your PYTHONPATH environment variable.

share|improve this answer
thanks I will go with this solution – kosta5 Feb 16 '12 at 20:05

If you are running this on the command line as

python main.py

within the main folder, then you can't use import tgr... since tgr is several directories up. It's also impossible to do a relative import while you're running a program within the package, so doing from .. import parser won't work.

Your best choice is to move main.py into the TGRParser folder, alongside the tgr folder. At that point, running python main.py should work just fine.

share|improve this answer
also an idea - but I will go with the other sulution. Can you point me to any good material about python packages? – kosta5 Feb 16 '12 at 20:05
You're certainly welcome to. However, that really isn't how Python packages should be used or designed. A main.py file that imports a package should exist outside of the package itself. – David Robinson Feb 16 '12 at 20:14
I would take a look here: docs.python.org/tutorial/modules.html – David Robinson Feb 16 '12 at 20:14

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.