0

我最近在我的 Android 手机上安装了QPython version-1.2.1,它在Android 4.2.2 Jelly-Bean上运行。我可以使用QPython上的控制台来执行一些 python 命令,但是在第一次安装 QPython 时运行helloworld.py脚本时遇到问题。

你好世界.py:

#-*-coding:utf8;-*-
#qpy:console
#qpy:2

import androidhelper
droid = androidhelper.Android()
line = droid.dialogGetInput()
s = "Hello, %s" % (line.result,)
droid.makeToast(s)

运行文件helloworld.py后控制台的输出是这样的:

Traceback (most recent call last):
  File "/storage/sdcard0/com.hipipal.qpyplus/scripts/helloworld.py", line 12, in <module>
     droid = androidhelper.Android()
  File "/storage/sdcard0/com.hipipal.qpyplus/lib/python2.7/site-packages/androidhelper/sl4a.py", line 34, in __init__
     self.conn = socket.create_connection(addr)
  File "/QPython/QPython2-core/build/python-install/lib/python2.7/socket.py", line 553, in create_connection
     socket.gaierror: [Errno 7] no address associated with hostname.

如果从控制台调用,androidhelper 模块方法也不起作用。

4

2 回答 2

0

也许 /etc/hosts 被修改了。将其恢复为原始状态,如下所示:

127.0.0.1 本地主机

并再次尝试 qpython。

于 2016-03-31T08:40:19.030 回答
0

您使用的是旧的 qpython,请尝试最新的 https://github.com/qpython-android/qpython/releases

于 2017-11-24T15:19:55.787 回答