如何在 yocto 图像中包含 python pex 包
how to include python pex package in yocto image
我需要将 python pex 包包含到我的 yocto 图像中。
我尝试使用 setupautotools 和 pypi 包,它没有提供结果。
python pex 不能作为 pypi 包使用。
谁能帮忙把 python pex 添加到我的 yocto 图像中。
Link 对于 pex:https://pypi.org/project/pex/#description
有没有不用pip安装pex的方法?
更新问题:
我需要将 link 中提到的 pex 包安装到我的 yocto 图像中。
pex 包在 git 存储库中不可用,例如 wheel https://github.com/pypa/wheel。
由于这个原因,我无法在 yocto 配方的 .bb 文件中使用 "inherit pypi setuptools"。
我想你需要写的所有东西都已经存在了python包。
https://github.com/pantsbuild/pex 是 github 回购
https://pypi.python.org/pypi/pex是pypi包
您需要类似于:
SUMMARY = "pex is a library for generating .pex (Python EXecutable) files which are executable Python environments in the spirit of virtualenvs."
HOMEPAGE = "https://github.com/pantsbuild/pex"
SECTION = "devel/python"
LICENSE = ""
LIC_FILES_CHKSUM = "file://LICENSE;md5=0123"
SRC_URI[md5sum] = "0123"
SRC_URI[sha256sum] = "0123"
PYPI_PACKAGE="pex"
inherit pypi
RDEPENDS_${PN} = "\
${PYTHON_PN}-core \
"
BBCLASSEXTEND = "native nativesdk"
我需要将 python pex 包包含到我的 yocto 图像中。
我尝试使用 setupautotools 和 pypi 包,它没有提供结果。
python pex 不能作为 pypi 包使用。
谁能帮忙把 python pex 添加到我的 yocto 图像中。
Link 对于 pex:https://pypi.org/project/pex/#description
有没有不用pip安装pex的方法?
更新问题: 我需要将 link 中提到的 pex 包安装到我的 yocto 图像中。 pex 包在 git 存储库中不可用,例如 wheel https://github.com/pypa/wheel。 由于这个原因,我无法在 yocto 配方的 .bb 文件中使用 "inherit pypi setuptools"。
我想你需要写的所有东西都已经存在了python包。
https://github.com/pantsbuild/pex 是 github 回购
https://pypi.python.org/pypi/pex是pypi包
您需要类似于:
SUMMARY = "pex is a library for generating .pex (Python EXecutable) files which are executable Python environments in the spirit of virtualenvs."
HOMEPAGE = "https://github.com/pantsbuild/pex"
SECTION = "devel/python"
LICENSE = ""
LIC_FILES_CHKSUM = "file://LICENSE;md5=0123"
SRC_URI[md5sum] = "0123"
SRC_URI[sha256sum] = "0123"
PYPI_PACKAGE="pex"
inherit pypi
RDEPENDS_${PN} = "\
${PYTHON_PN}-core \
"
BBCLASSEXTEND = "native nativesdk"