First, check the dependency of the executor
>>> ldd [programmer]
linux-gate.so.1 => (0xf7ef9000)
libpthread.so.0 => /lib/i386-linux-gnu/libpthread.so.0 (0xf7eba000)
libboost_locale.so.1.65.1 => not found
libstdc++.so.6 => /usr/lib/i386-linux-gnu/libstdc++.so.6 (0xf7d43000)
libm.so.6 => /lib/i386-linux-gnu/libm.so.6 (0xf7ced000)
libgcc_s.so.1 => /lib/i386-linux-gnu/libgcc_s.so.1 (0xf7cd0000)
libc.so.6 => /lib/i386-linux-gnu/libc.so.6 (0xf7b19000)
/lib/ld-linux.so.2 (0xf7efb000)
You can see that there are many dependencies, several of which are not found
So the problem is very clear. You can find any dependency and find that it is all under the/lib/i386 Linux GNU/folder. Since you can’t find it, there is no
under this folder
Just put the corresponding dependency package in this location
Similar Posts:
- Ubuntu can’t find libc. So. 6
- GCC refers to math. H header file, and there are some errors such as undefined reference to ` POW ‘when compiling
- [Solved] C Programmer Error: double free or corruption (fasttop)
- fatal error: gnu/stubs-32.h: No such file
- [Solved] Ubuntu 18.04 installation perf error: WARNING: perf not found for kernel 4.15.0-39
- linux mount: unknown filesystem type ‘exfat’
- [Solved] Shared libraries Loading Error: libhwloc.so.5: cannot open shared object file: No such file or directory
- /lib64/libc.so.6: version `GLIBC_2.14′ not found [How to Solve]
- [Solved] ERROR: ***-cp37-cp37m-linux_x86_64.whl is not a supported wheel on this platform.
- Python2.7 Error: command not found: django-admin.py [How to Solve]