Hello,
I installed Node.js on a Raspberry Pi 4 (using Debian instructions):
curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
apt-get install -y nodejs
I was hoping for Node.js 64 bits to be installed, but I think it’s the 32 bits version (expected arm64
with process.arch
).
$ cat /etc/debian_version
11.3
$ arch
aarch64
$ node -e "console.log(process.arch)"
arm
I found this comment from January 2021. I understand that the applications are installed in 32 bits. Is this still the case with Debian 11 Bullseye? And can we install 64-bit versions?