2 回答
TA贡献1816条经验 获得超6个赞
当您通常运行它时,编写和运行使用/导入熊猫的 kivy 应用程序不会造成任何问题。但是当您将其转换为 apk 时,它会加载并崩溃。这是因为 python4android 目前不明确支持 pandas。你可以做的是应用补丁。
TA贡献1840条经验 获得超5个赞
您需要为 android 的 python 创建一个配方,例如 OpenCV 配方。pandas 中有很多函数可以在 windows/Linux 目录中搜索。安装 pandas 时,模块数据直接转到 lib/site-packages,但对于 python-for-android 情况不同。要跟踪问题,请尝试捕获代码的错误并将其打印在文本标签中。
try:
#past your code here
a=1+1
except Exception as theeror:
import kivy
from kivy.app import App
from kivy.uix.label import Label
# Defining a class
class MyFirstKivyApp(App):
# Function that returns
# the root widget
def build(self):
# Label with text Hello World is
# returned as root widget
return Label(text =str(theeror))
# Here our class is initialized
# and its run() method is called.
# This initializes and starts
# our Kivy application.
MyFirstKivyApp().run()
添加回答
举报