I'm using amazon lambda CLI. Everything is up and correctly working and even ran hello_world scripts that functioned properly.
Now i'm running python packages and other files, everything was fine till I invoked my function:
Unable to import module 'handler': /usr/lib64/libstdc++.so.6: version
`GLIBCXX_3.4.20' not found
(required by /var/task/python_example2.cpython-36m-x86_64-linux-gnu.so)
So is the python_example2.cpython file not able to see where libstdc++.so.6 is?
I also ran the command: /sbin/ldconfig -p | grep stdc++
Output:
libstdc++.so.6 (libc6,x86-64) => /usr/lib/libstdc++.so.6
libstdc++.so.6 (libc6) => /usr/lib32/libstdc++.so.6
libstdc++.so.5 (libc6) => /usr/lib32/libstdc++.so.5
libstdc++.so (libc6,x86-64) => /usr/lib/libstdc++.so
libstdc++.so (libc6) => /usr/lib32/libstdc++.so
Not sure what is going on. I went into the /usr/lib64/ and didn't see libstdc++.so.6. I have conda and pip3. But I don't have sudo permissions to install say sudo apt-get install libstdc++6
.
Anyone can help me out? Thanks.