You’re on arm7l which pip and PyPI don’t support so that’s why PyInstaller can’t ship precompiled bootloaders for you. Most Pi users can install packages from pywheels <https://www.piwheels.org/project/pyinstaller/> which contains a specially compiled copy of most common packages (see their home page <https://www.piwheels.org/> for setting it up) but first, what is the output of ldd --version on your Pi? If it says glibc then go ahead and use piwheels. If it’s musl then this is going to be harder… On Monday, November 1, 2021 at 1:30:35 PM UTC [email protected] wrote:
> Let me explain what I did first. As most people do, I first used pip to > install pyinstaller. > *pip3 install pyinstaller* > Everything seemed fine. It exited with "finished successfully" message. I > then tested it with a simply python code. It went all the way to the end > and then showed the following message. > [image: it8GE.jpg] > Having no clue at all, I decided to uninstall pyinstaller and download the > source to build on the machine. After building bootloader, it exited with > "finished successfully" as well but with another warning message. > [image: scF4c.jpg] > > I ignored it and continued to install pyinstaller. It also ended with > successful message. When I tested it, the same "not include a pre-compiled > bootloader" error showed. > Here is what I get from /proc/cpuinfo. It's NanoPi Neo with 4 cores. > [image: 5cCfJ.jpg] > I'm using the latest image from FriendlyARM, which was released on June > this year. > [image: AeWii.jpg] > BTW, here is what I get from python3. > *platform.machine() ==> armv7l* > *platform.system() ==> Linux* > -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/3a2e46f7-ceb3-4a97-b551-7f003cd5eb98n%40googlegroups.com.
