Hello,
I have a Yocto project in which I have to include Python a specific python library imported by a script (librosa)
I added it in my image and created a recipe for it with devtool.
When I build my image, it the requires further dependencies for this new library but I'm facing some problems:
- when I add the missing dependencies with devtool, it can fail (ie. parsing failure on adding numba)
- adding libraries with '_' in their name is not possible straightforward, it requires to replace with another character in the recipe name (ie. lazy_loader, typing_extensions) which can lead to compilation errors when lauching bitbake librosa.
I'm a complete beginner in Yocto.
Has someone already done it ?
Is there another way I could embed librosa in my soft ?
Thanks for any help
Alexandre