I've attempted through the icr channel to install python3 and pip such that I can install packages and use the standard library.
It didn't look like the python 3 package group was setup. I attempted to do what khem` suggested to get around the problem. https://www.yoctoproject.org/irc/%23yocto.2015-04-01.log.html mkaras: look into build tree of python3 and see what all ipk/rpms it generated and add them all to IMAGE_INSTALL Doing that still produced errors. So I tried out getting pip and python 2 on my target and it worked on the first try. Adding these to IMAGE_INSTALL - did exactly what I was looking for. python \ python-pip \ On Wed, Apr 1, 2015 at 11:19 AM, Burton, Ross <[email protected]> wrote: > > On 1 April 2015 at 15:29, Matthew Karas <[email protected]> wrote: > >> DEPENDS = "python3 python3-native python3-distribute" >> RDEPENDS_${PN} = "python3 python3-native python3-distribute" >> RDEPENDS_${PN}-dev = "bash python3 python3-native python3-distribute" >> > > python3-native is a form of Python 3 that is built and executed on your > build machine, so it makes no sense to have this as a runtime dependency. > The RDEPENDS should just be python3 python3-distribute. > > Ross >
-- _______________________________________________ yocto mailing list [email protected] https://lists.yoctoproject.org/listinfo/yocto
