I've installed minidcos using below command
curl --fail -L https://github.com/dcos/dcos-e2e/releases/download/2019.10.10.0/minidcos -o /usr/local/bin/minidcos && \
chmod +x /usr/local/bin/minidcos
when I try to find the version after install to check everything is working fine I get below error -
$ sudo minidcos --version
[21667] Error loading Python lib '/tmp/_MEItueAuk/libpython3.7m.so.1.0': dlopen: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.28' not found (required by /tmp/_MEItueAuk/libpython3.7m.so.1.0)
I've libc.so.6 in the required path
$ ls /lib/x86_64-linux-gnu/ | grep libc
libc-2.23.so
libcap.so.2
libcap.so.2.24
libcgmanager.so.0
libcgmanager.so.0.0.0
libcidn-2.23.so
libcidn.so.1
libcom_err.so.2
libcom_err.so.2.1
libcrypt-2.23.so
libcrypto.so.1.0.0
libcryptsetup.so.4
libcryptsetup.so.4.6.0
libcrypt.so.1
libc.so.6
Note: Os details -
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 16.04.6 LTS
Release: 16.04
Codename: xenial
python details -
$ python3 --version
Python 3.5.2
How can I fix this issue?