I need to install Python 2.7.x on a TI Sitara ARM processor (based on the BeagleBone Black) running a minimal custom version of Linux. In particular, the OS does not have any package manager, no gcc, no make, etc. Since it is not realistic to create a new image at this point in time, I was thinking of copying Python files from a BeagleBone Black running Debian to the TI Sitara. Does it have any chance of succeeding? Is there a blueprint somewhere that could help me in this endeavor so that I don't miss a file, a symbolic link, etc?
|
If you have some way of copying tarred files from the Debian running system to the target and untar them there this should not be that difficult. You could start out with anaylysing the relevant A much easier solution if you have a similar architecture system with compiler, and one I have used for Solaris systems for which we had no compiler licenses at the time, is to download the source and configure with a unique prefix (on your Debian system):
Pay attention to the configuration messages, as you might need to install additional ( After that tar up After that typing |
|||
|