You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
whenever I tried to run bun it just throws an error
bun: /lib/x86_64-linux-gnu/libm.so.6: version GLIBC_2.29' not found (required by bun) bun: /lib/x86_64-linux-gnu/libc.so.6: version GLIBC_2.28' not found (required by bun)
The text was updated successfully, but these errors were encountered:
18.04 LTS: /lib/x86_64-linux-gnu/libc.so comes from libc6-dev package: file search
Looks like the libc version there is 2.27 and that is the problem package details. Your version of bun asks for 2.29.
I'v installed with explicit version of last release using: curl https://bun.sh/install bun-v0.1.1 | bash and it asks for 2.28 as its a bit older than the latest you have. But I have obviously same problem.
You can run it with older bun version (just lookup releases on github).
Or you can get manually libc at the required version.
It appears bun executable (amd64 v0.1.1) doesn't make a typical lookup, it wants the .so exactly there. So it forced you to replace the libc6-dev one and I don't think its a good idea, since other packages might rely on the version 2.27...
I am running ubuntu 18.04 LTS
whenever I tried to run bun it just throws an error
bun: /lib/x86_64-linux-gnu/libm.so.6: version
GLIBC_2.29' not found (required by bun) bun: /lib/x86_64-linux-gnu/libc.so.6: version
GLIBC_2.28' not found (required by bun)The text was updated successfully, but these errors were encountered: