Yocto 使用 bdist_wheel 安装 python 应用程序

Yocto 使用 bdist_wheel 安装 python 应用程序

我正在尝试在基于 Yocto Kirkstone 的树莓派 CM4 板上安装基于 python3 的自定义应用程序。正如 kirkstone 的迁移说明中提到的,用于安装 python 模块的 distutils 方法已被弃用。所以我使用setuptools3.bbclass。但我不知道如何使用SETUPTOOLS_BUILD_ARGS.对于DISTUTILS_BUILD_ARGS,我使用了以下内容:

DISTUTILS_INSTALL_ARGS = "--root=${D} \
--single-version-externally-managed \
--prefix=/opt/hfas/app/${PN} \
--install-lib=/opt/hfas/app/${PN} \
--install-data=/opt/hfas/app/${PN}/data"

其中“/opt/hfas”是我的路径,我想在其中安装我的应用程序。谁能告诉我如何设置我的应用程序?

相关内容