Getting errors when trying to run my index.js file on a remote linux server. #189
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
@AnimeshDeb It seems prebuilt binary fails to load on your Linux machine because the
Also, try to use the latest version of the version 3 beta as it detects various incompatibilities in the current system and explains the issues with potential solutions when applicable. |
Beta Was this translation helpful? Give feedback.
@AnimeshDeb It seems prebuilt binary fails to load on your Linux machine because the
glibc
version is older than2.29
, and that some C/C++ libraries are missing.glibc 2.29
was released in 2019, so your Linux distro may be too outdated to run the prebuilt binaries; updating your distro's latest LTS version may help.To make the build succeed you need some missing libraries; ChatGPT suggests that you run
sudo apt install build-essential
to install the missingstdatomic.h
file, but it may not suffice; updating to the latest LTS version of your distro is most likely the right solution.Also, try to use the latest version of the version 3 beta as it detects various incompatibilities in the cu…