On 25 Feb 2023, at 07:14, minecraft2048 via lists.yoctoproject.org <[email protected]> wrote: > If I inherit python_poetry_core on my bitbake recipe file, and install it > into my yocto image, will my python script get all its dependencies and work? > Or I still need to add the dependencies to RDEPENDS? How about virtualenvs?
The Python build tool, be it poetry or flit or setuptools, will do a build in the environment that the recipe has defined: only the dependencies in DEPENDS, no virtualenv. The point being that we control the environment and know exactly what versions of what packages are in it. Ross
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#59305): https://lists.yoctoproject.org/g/yocto/message/59305 Mute This Topic: https://lists.yoctoproject.org/mt/97222753/21656 Mute #devtool:https://lists.yoctoproject.org/g/yocto/mutehashtag/devtool Mute #python:https://lists.yoctoproject.org/g/yocto/mutehashtag/python Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/yocto/leave/6691583/21656/737036229/xyzzy [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
