I am new to Python and I have trouble to import modules with Wing IDE/Python 2.7/Mac OS
I have read: Import module from other directory in Wing Ide
and: http://docs.python.org/2/tutorial/modules.html
but still I don't get it.
If, as presented in the second link, I create a fibo.py script and save it in my Python Path then when I try to import it, I have the following error:
import fibo
Traceback (most recent call last):
File "<string>", line 1, in <fragment>
ImportError: No module named fibo
although fibo is available for auto-completion when I type
import
What did I miss? Thanks for your answers