Reputation: 651
I get this problem when I try to run Python 3.6 on my Ubuntu:
/lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.25' not found
what can be the cause of that?
Upvotes: 5
Views: 13770
Reputation: 213576
You somehow installed python3.6 that was compiled/linked against GLIBC-2.25 (or later). This binary can not run on any machine which has older GLIBC.
The solution is to either build or install python3.6 that is targeted to your machine.
Upvotes: 5