Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I install node.js on Ubuntu 18.04 32 bit?

I've scoured Stack Overflow and Google as well as other forums for this answer regarding Ubuntu 18.04 34 bit and the latest Node.js version. If it is possible could you please refer or provide me proper instructions on how to install Node.js on Ubuntu 18.04 or weather it is or is not possible to install Node.js on this particular 32 bit linux distro.

like image 472
w3Develops Avatar asked Aug 24 '19 09:08

w3Develops


People also ask

Is node js 32 bit or 64 bit?

Node. js runs on different architectures. You can use it on all common operating systems, like Windows, Linux, and macOS. You can also use it on 32-bit and 64-bit machines.

Does Ubuntu come with npm?

Node. js and npm packages are available from the default Ubuntu 18.04 repositories. At the time of writing, the version included in the Ubuntu repositories is v8.


2 Answers

node versions for 32bit systems are available at https://unofficial-builds.nodejs.org/

like image 51
user12799761 Avatar answered Sep 24 '22 04:09

user12799761


You need to build from the source download source from the link

https://nodejs.org/dist/v12.9.0/node-v12.9.0.tar.gz

Extract and go to the directory , apply following commands to compile

./configure
make
like image 29
ChauhanTs Avatar answered Sep 23 '22 04:09

ChauhanTs