1

我正在使用chaquopy演示在 android 中运行 python。(取自 GitHub https://github.com/ericdecanini/HelloChaquopy

我的 test1 函数返回string.

当我添加该import numpy as np行时,应用程序停止运行。

在 logcat 我得到:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.ericdecanini.chaquopytesttwo/com.ericdecanini.chaquopytesttwo.MainActivity}: com.chaquo.python.PyException: ModuleNotFoundError: No module named 'numpy'`

请让我知道我错过了什么。

import numpy as np
import time
import math

def test1():
    x = math.sin(3.14159/2.0)
    str1 = "%.2f" % x
    str2 = time.strftime("%a, %d %b %Y %H:%M:%S +0000", time.gmtime())

    return " --- OK --" + str1 + "\n --- " +str2 + "\n --- "

注意:当我将导入注释掉到 numpy 时,它运行正常。

4

2 回答 2

4

尝试在应用程序 build.gradle的要求部分中添加包名称,如此处所述

defaultConfig {
    python {
        pip {
            install "numpy"
        }
    }
}
于 2020-07-05T15:19:33.483 回答
0

我找到了在 chaquopy android studio 中导入 numpy 的解决方案。观看此视频,这将帮助您使用 chaquopy android studio 安装任何库

https://youtu.be/BDmB3EFy0Qg

于 2020-07-20T06:52:31.217 回答