I am working on docker container with Ubuntu version 18.04.
I am running a python file inside docker container and encountered this libgcc_s.so.1
error.
This error occurs from the main python file when importing function from another python file in same directory.
I have the lib file in /lib/x86_64-linux-gnu
.
I have also installed gcc-multilib
using apt-get
from Dockerfile. But the error still persists as:
libgcc_s.so.1 must be installed for pthread_cancel to work
Loguru caught a signal: SIGABRT
Stack trace:
13 0x7fd71dc8571f clone + 63
12 0x7fd71eb506db /lib/x86_64-linux-gnu/libpthread.so.0(+0x76db) [0x7fd71eb506db]
11 0x618e77 python() [0x618e77]
10 0x638f28 python() [0x638f28]
9 0x618e98 python() [0x618e98]
8 0x7fd71eb51ae5 /lib/x86_64-linux-gnu/libpthread.so.0(+0x8ae5) [0x7fd71eb51ae5]
7 0x7fd71eb5a000 __pthread_unwind + 64
6 0x7fd71eb5c0c4 /lib/x86_64-linux-gnu/libpthread.so.0(+0x130c4) [0x7fd71eb5c0c4]
5 0x7fd71eb5bfbf /lib/x86_64-linux-gnu/libpthread.so.0(+0x12fbf) [0x7fd71eb5bfbf]
4 0x7fd71dbed9fa /lib/x86_64-linux-gnu/libc.so.6(+0x899fa) [0x7fd71dbed9fa]
3 0x7fd71dbed6b5 /lib/x86_64-linux-gnu/libc.so.6(+0x896b5) [0x7fd71dbed6b5]
2 0x7fd71dba4921 abort + 321
1 0x7fd71dba2fb7 gsignal + 199
0 0x7fd71eb5b980 /lib/x86_64-linux-gnu/libpthread.so.0(+0x12980) [0x7fd71eb5b980]
( 3.117s) [ 66902700] :0 FATL| Signal: SIGABRT
Aborted (core dumped)
Any work around needs to be done?