Hello
(Please excuse, if this is stupid.)
Loading modules doesn't work on my E61. Like discribed in the readme file, I placed my pathinfo.py file in e:/python/lib/ and this also is in sys.path as it should be, but if I say import pathinfo I always get module not found.
Can anyone tell me what I'm doing wrong here??Code:>>> import pathinfo Traceback (most recent call last): File "<console>", line 1, in ? ImportError: No module named pathinfo
Thank you for all ideas!
My stuff..
Code:>>> sys.path ['c:\\private\\f0201515', 'c:\\resource', u'c:\\python\\lib', u'e:\\python\\lib'] >>> os.listdir( 'e:/python/lib' ) ['pathinfo.py']
From the README file:
* The script shell "Run script" function searches for Python scripts
to run in the directories c:\python and e:\python. You can place
any scripts you wish to run in one of these directories. The script
shell will add the directories c:\python\lib and e:\python\lib into
sys.path, if they exist. You can place any library modules you wish
to use in one of these directories. To access these directories,
you can use e.g. the Nokia PC Suite, a memory card reader or a file
manager

)
Reply With Quote

