我正在尝试在目标计算机上同时安装python-twisted(python-txws要求)和python3-twisted(对于gnuradio)。问题在于,由于这两个配方使用相同的源代码,因此在映像的do_rootfs任务期间存在冲突,因为这两个配方在/ usr / bin
中安装了二进制文件。我首先尝试将其添加到python-twisted食谱中:
do_install_append(){
rm -f ${D}${bindir}/pyhtmlizer ${D}${bindir}/tkonch
.......... }
哪个促使我出现以下错误:
nothing provides python-twisted-bin needed by
python-twisted-17.9.0-r0.cortexa9hf-neon
我想知道在这种情况下是否可以建立符号链接,但绝对不确定如何做...
任何帮助将不胜感激! :-)