Categories: S60 | Python | How To | Development Process
This page was last modified 07:40, 5 May 2008.
How to install libraries
From Forum Nokia Wiki
2nd edition
There are no difficulties to install libraries on 2nd edition devices.
- Push the library (*.py and *.pyd) to the phone
- The automatic installer asks you how to install
- Choose to install has a library
When packaging libraries in a .sis, the target folders are C:\\System\\libs and E:\\System\\libs respectively for the phone memory and the memory card.
3rd edition
With 3rd edition phones same kind of installation does not work, because python (.py, .pyc, .pyd and .pyo) recognizer plug-in is missing. You need to package your libraries to be able to install them.
The target location is C:\\resource or E:\\resource for the .py. For the .pyd (python DLL), the target is C:\\sys\\bin or E:\\sys\\bin.
An easy way to make those installation packages (.sis and .sisx for its signed version) is to use ensymble with the option simplesis.
- Create the following folder architecture with the libraries at the right places:
mylibrary
|_ resource
| |_ mylibrary.py
|_sys
|_bin
|_ myOtherLib.pyd
- Go to the root of mylibrary directory
- From shell, run the command
python ensymble.py simplesis mylibrary
Then you'll get mylibrary_x.x.x.sis ready to be pushed in your phone.
Ensymble has plenty of other functions. I encourage you to read the man.
| Related Discussions | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| compiling app using nokia's ui classes! errors won't go away! :( | mickeyREN | Mobile Java General | 7 | 2003-10-08 12:11 |
| How do I make DSOs using CSL arm toolchain? | Martin_Malek | Symbian Tools & SDKs | 0 | 2007-08-25 12:10 |
| Nokia PC Connectivity SDK and Connection Manager | aleksunder | PC Suite API and PC Connectivity SDK | 3 | 2004-09-07 20:19 |
| mwldsym2.exe: Internal linker error for directx | fish_h | Symbian Tools & SDKs | 2 | 2006-09-16 18:03 |
| UID of app present in ftp_libraries_series_60.SIS | SymbianSandy | Symbian Networking & Messaging | 1 | 2006-12-09 12:39 |
