0

当我尝试在我的 N95 手机上的 PyS60 2.0 版上导入 scriptext 时,我收到一个导入错误,指出没有名为 scriptext 的模块。

我怎样才能找出问题所在?

4

1 回答 1

1

来自: http: //pys60.garage.maemo.org/doc/s60/scriptext.html

注意:该服务从“S60 第三版 FP2 及更高版本”可用。

N95 是第 3 版 FP1 设备。

您可以通过将导入放入 try..except 块中来根据此模块的可用性在运行时调整您的应用程序:

try:
    import scriptext
except ImportError:
    # Module could not be imported, tell the user to update to a newer device
    # or continue without it if having scriptext is not crucial to your app.
于 2010-10-30T10:16:57.480 回答