我正在尝试为 Yocto/Kirkstone 安装 python3-scipy。
我使用内置命令 pipoe 安装了该软件包。
pipoe --python python3 --package scipy --licenses MIT
该命令有效并且安装了相应的配方。
编译并构建图像。
bitbake kirkstone-image.bb
在工作目录中,我将其视为
观察到的输出:
cd /build/build/tmp/work/cortexa9t2hf-neon-linux-gnueabi/python3-scipy/1.13.0-r0/
tree image
└── usr
└── lib
└── python3.10
└── site-packages
└── UNKNOWN-0.0.0.dist-info
├── LICENSES_bundled.txt
├── LICENSE.txt
├── METADATA
├── RECORD
├── top_level.txt
└── WHEEL
它的建设情况未知。
从这个网址:https://docs.scipy.org/doc/scipy/dev/toolchain.html 我可以看到我的 Python 版本支持它。
python3-scipy 配方文件
SUMMARY = "Fundamental algorithms for scientific computing in Python"
HOMEPAGE = "https://scipy.org/"
AUTHOR = "None <None>"
LICENSE = "MIT"
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5f477c3073ea2d02a70a764319f5f873"
SRC_URI = "https://files.pythonhosted.org/packages/fb/a3/328965862f41ba67d27ddd26205962007ec87d99eec6d364a29bf00ac093/scipy-1.13.0.tar.gz"
SRC_URI[md5sum] = "6c6c404e2cf783374587c9f012d622bc"
SRC_URI[sha256sum] = "58569af537ea29d3f78e5abd18398459f195546bb3be23d16677fb26616cc11e"
S = "${WORKDIR}/scipy-1.13.0"
DEPENDS += "python3-numpy-native python3-cython-native lapack openblas libgfortran gcc-runtime python3-pybind11-native python3-wheel-native python3-pythran-native"
RDEPENDS:${PN} += "openblas lapack libgfortran python3-numpy python3-pybind11 cmake"
CLEANBROKEN = "1"
DISTUTILS_BUILD_ARGS = "--fcompiler=gfortran"
#inherit setuptools3-base
#inherit setuptools3_legacy
#inherit setuptools3
inherit python_setuptools_build_meta
inherit pkgconfig
其他详细信息:
目标架构 - ARM
Yocto 版本 - Kirkstone
主机服务器 - Ubuntu 22.04LTS
Python 版本 - 3.10.7
答案1
作为解决方法,我所做的是克隆图层meta-scipy
。
git clone -b branch_name https://github.com/tuxable-ltd/meta-scipy meta-scipy
- 我用的是
dunfell
分行。 - 我根据需要对配方进行了相应的更改并构建了图像。按预期工作。
Python3-scipy 版本 1.8.1。
尽管这是一个解决方案,但原始问题尚未正确识别。
笔记: 上面的层不再维护,已经归档。