-
Notifications
You must be signed in to change notification settings - Fork 371
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
7.16 python not working, not found error #46
Comments
same problem :( |
Problem is still here in 7.15.3, 7.16.1, and 7.17beta2. Pip3, python3-config, ... works, but says python3 is unreachable. Any hidden var in bash / system ? |
I've tried the same thing you did. The bash is a symbolic from busybox. It's actually ash. Feels like something is hijacking the execution of a python binary, seeing it as a bash script |
By changing the name of the python3 binary, the problem is still the same, what could mark the binary as a bash script ? That's interesting. I also tried to import a python3.11 binary from another x86 system (Debian 12), the same happened. Executing the binary by doing "./python3.11" neither works. |
I'm not sure if that's the problem. |
The problem seems related to ash : Ash won't let any binary other than the ones in Busybox be executed. Maybe this implementation of ash does an alias each time we enter a command such as "busybox [command]". In this case, this would explain why we aren't able to launch any other binary. I also tried compiling Python in 32 bits, the problem is the same. |
The text was updated successfully, but these errors were encountered: