android Chaquopy找不到numpy,即使我安装了它

4urapxun  于 2023-11-15  发布在  Android
关注(0)|答案(1)|浏览(149)

我想在chaquopy的android studio项目中使用galois库,它是numpy的扩展。

python{
    version "3.8"

    pip{
        install "cython"
        install "numpy==1.24.4"
        install "numba==0.6.0"
        install "galois"
    }
}

字符串
我的build.gradle文件。然而,当我尝试构建包时,我得到了这个错误:

ERROR: Command errored out with exit status 1:
     command: /usr/bin/python3 -S -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'/tmp/pip-install-53dg7cfr/numba/setup.py'"'"'; __file__='"'"'/tmp/pip-install-53dg7cfr/numba/setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' --no-user-cfg egg_info --egg-base pip-egg-info
         cwd: /tmp/pip-install-53dg7cfr/numba/
    Complete output (5 lines):
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
    ERROR: Command errored out with exit status 1:

      File "/tmp/pip-install-53dg7cfr/numba/setup.py", line 7, in <module>
        import numpy
    ModuleNotFoundError: No module named 'numpy'


当我尝试只导入numpy时,一切都很好。

xlpyo6sf

xlpyo6sf1#

对于包含NumPy和Numba等原生组件的软件包,您只能安装the Chaquopy repository中的版本。您可以将版本号更改为其中一个选项,或者完全删除它们以使用最新版本。
至于Cython,它是一个构建时工具,而不是运行时工具。因为你不会构建任何软件包,你可能应该把它从列表中删除。

相关问题