vote up 1 vote down star

I am running Python 2.5.

This is my folder tree:

ptdraft/
  nib.py
  simulations/
    life/
      life.py

(I also have __init__.py in each folder, omitted here for readability)

How do I import the nib module from inside the life module? I am hoping it is possible to do without tinkering with sys.path.

(Note: The main module being ran is in the ptdraft folder.)

flag

65% accept rate
look here: stackoverflow.com/questions/456481/… – Nathan Ross Powell Apr 3 at 14:10
What's your PYTHONPATH setting? – S.Lott Apr 3 at 14:18
1  
Ross: I looked there. What should I do about it? I already have a __init__.py. S.Lott: I don't know how to check... – cool-RR Apr 3 at 14:42
echo $PYTHONPATH from the shell; import sys; print sys.path from within Python. docs.python.org/tutorial/… – S.Lott Apr 3 at 16:27

3 Answers

vote up 2 vote down check

What's wrong with just import ptdraft.nib

Update:

It seems that the problem is not related to the module being in a parent directory or anything like that.

You need to add the directory that contains ptdraft to PYTHONPATH

You said that import nib worked with you, that probably means that you added ptdraft itself (not its parent) to PYTHONPATH.

link|flag
+1 Why don't ppl just try before asking? – vartec Apr 3 at 14:19
I did try that, it gives: ImportError: No module named ptdraft.nib – cool-RR Apr 3 at 14:36
Read the update, I understand. But now I ask: Is it okay that my PYTHONPATH is set up like that? I didn't manually set it up, I'm working with Eclipse. – cool-RR Apr 3 at 22:26
Whether it's ok or not depends mostly on you. If you're going to publish this though, I'd say it's not quite ok. I really don't know how to setup the PYTHONPATH in eclipse. – hasen j Apr 4 at 4:01
I don't understand, hasen. Regardless of IDE, I have a folder with a bunch of Python files in it. If I double click the main one from explorer, it's supposed to run properly, isn't it? So who determines the PYTHONPATH in that case? Because the import nib version works when I double click it. – cool-RR Apr 4 at 8:22
show 1 more comment
vote up 0 vote down

For some reason, now simply import nib works (I am sure I tried that at some point, I tried a lot of different things. Maybe I changed something that I don't remember.)

As I commented, import ptdraft.nib did not work.

link|flag
vote up 3 vote down

You could use relative imports (python >= 2.5):

from ... import nib

(What’s New in Python 2.5) PEP 328: Absolute and Relative Imports

EDIT: added another dot '.' to go up two packages

link|flag

Your Answer

Get an OpenID
or

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