| Reply | « Previous Thread | Next Thread » |
|
Hi there,
I've been searching for a solution to this problem all over the internet. And unless I'm asking the wrong questions I'm not getting the right answers. It seems silly really... I've written two python scripts in two modules: one module is DrawIt.py and the calling module is CallIt.py. In the CallIt.py I try to import the DrawIt.py. I get a "ImportError: No module named DrawIt". I look in the python installs directory on the emulator, and there they both are. Scratching my head, I try to import ball.py, which comes with the S60 emulator and I can't import that into CallIt either. What's going on? Mind you, I'm very new to python and so there might be something I'm missing. When I run python files in Windows they search certain directories including the residing directory for imported modules. Is there something I'm not doing? Do I need to insert these files into a specific directory (and how do i do this with the emulator)? |
| astralblizzard |
| View Public Profile |
| Find all posts by astralblizzard |
|
Join Date: Oct 2007
Posts: 2,841
Location: Deva, Romania
Offline
Forum Nokia Champion
|
|
Hi,
You have to tell Python where to look for your modules: Code:
import sys
#Let's assume DrawIt.py is in C:\Data
sys.path.append("C:\\Data")
#Now you can import it
import DrawIt
|
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|
| Rate This Thread | |
| Thread | Thread Starter | Forum | Replies | Last Post |
|---|---|---|---|---|
| Icons in s60 | drizzt6 | Mobile Java General | 5 | 2009-03-06 10:32 |
| OpenGL ES on S60 3rd Edition SDK Emulator | specjones | Symbian Tools & SDKs | 7 | 2008-09-30 11:22 |
| S60 3rd Edition SDK maintenance release Java SDK | andresnokia | Mobile Java Tools & SDKs | 7 | 2008-06-23 20:07 |
| Does S60 3rd Edition SDK FP2 supports RTP through CRtpAPI on emulator? | nidhigupta | Symbian Tools & SDKs | 1 | 2008-05-01 09:08 |
| S60 3RD EDITION SDK FOR SYMBIAN OS install problems on a raid system | rolfstenholm | Symbian Tools & SDKs | 2 | 2007-02-22 16:25 |