简体   繁体   中英

Adding Python-twisted in yocto build

I have added python-twisted in local.conf

IMAGE_INSTALL_append = " python-twisted"

after building the os and putting it on my board , i ran following command:

pip list

I get that twisted v17.9.0 is present

but when i try to run an application which requires python twisted ,twisted asks for dependencies (hyperlink,six,autobahn,automat etc.)

so i have to download packages on my board and install them or by connecting board to internet and install twisted using pip.

How to install and ensure that all the dependencies required by python-twisted is build during yocto build itself ?

Yocto does fine grained packaging of python-twisted, therefore it has multiple output packages generated in the end. So its important to know which ones are needed on target.

IMAGE_INSTALL_append = " python-twisted-core"

might cover most core pieces then there are more see

here is full list of python-twisted packages

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM