|
|
2010-02-14
, 12:32
|
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#2
|
|
|
2010-02-14
, 18:06
|
|
Posts: 6 |
Thanked: 0 times |
Joined on Feb 2010
|
#3
|
|
|
2010-02-14
, 18:16
|
|
|
Posts: 14 |
Thanked: 10 times |
Joined on Jan 2010
@ Italy
|
#4
|
id
| The Following User Says Thank You to Ralph For This Useful Post: | ||
|
|
2010-02-14
, 18:26
|
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#5
|
no details noting. as if it ignores the command i wrote, it goes to input ready mode. ~$:
1. I didn't install the maemo SDK on my linux if that is a problem
2. I basically type this line directly on my phone xterminal
~$: python server.py localhost 8081
BTW, I found this for the python gui:
http://wiki.maemo.org/PyMaemo/UI_tut...etting_started
but all of them require me to install maemo SDK. I remember I had trouble installing the scratchbox when i tried to install it.
|
|
2010-02-14
, 18:41
|
|
Posts: 6 |
Thanked: 0 times |
Joined on Feb 2010
|
#6
|
|
|
2010-02-14
, 18:54
|
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#7
|
The PyMaemo tutorial says I need Maemo SDK to use the GUI library. how do you develop GUI interface for python on the machine itself?
| The Following User Says Thank You to rambo For This Useful Post: | ||
|
|
2010-02-14
, 20:08
|
|
Posts: 6 |
Thanked: 0 times |
Joined on Feb 2010
|
#8
|
|
|
2010-02-14
, 20:29
|
|
Posts: 540 |
Thanked: 288 times |
Joined on Sep 2009
|
#9
|
program = hildon.Program.get_instance()
that no such function exists.
I tried other examples, I seem to be getting errors saying no such function exist in the hildon library.
import hildon, osso, gtk
osso_c = osso.Context("myprog", "0.0.1", False)
app = hildon.Program()
window = hildon.Window()
#window.connect('destroy', mycleanuproutine)
app.add_window(window)
# add your Hildon/GTK widgets to the window
window.show_all()
| The Following User Says Thank You to rambo For This Useful Post: | ||
|
|
2010-02-15
, 03:50
|
|
Posts: 6 |
Thanked: 0 times |
Joined on Feb 2010
|
#10
|
I'm assigned to create a sever/client program on the schools Nokia N800.
I'm having trouble running a python script on it. I installed python and works fine, (when i type python on xterminal, on the phone xterminal) it starts python interpreter.
When i try to run a script in a file (python server.py), it wont. however, when i ssh into the phone and then run python server.py it works fine. any thought?
Also, how do i create a gui interface for my script? where do i start i mean.
-thank you