sudo yum install -y gcc-c++ make
sudo yum install nodejs
sudo yum install sqlite
sudo yum install npm
sudo yum install sqlite
sudo apt-get update
sudo apt install nodejs
sudo apt install npm
sudo apt install sqlite
To install Node.js, browse to https://nodejs.org/en/download/.
Download the latest Windows Installer.
Run the installer and follow the prompts.
To install SQLite, browse to https://www.sqlite.org/download.html.
Under Precompiled Binaries for Windows, download the .zip that starts with "sqlite-tools-win32-x86..."
NOTE: Windows users will need to install a compression/unpacking application such as 7-zip, WinZip, etc.
Extract the .zip file to the desired path.
Edit the Windows PATH variable to include the extracted folder that contains the sqlite3 executable.
To install Node.js, browse to https://nodejs.org/en/download/.
Download the latest MacOS Installer (.pkg).
Run the installer (and fail).
Click Settings→Security and Privacy→General.
Under Allow Apps find the node…pkg file and select Open Anyway.
Select Open.
To install SQLite, browse to https://www.sqlite.org/download.html.
Download sqlite-autoconf-[version number].tar.gz.
Open a terminal to the location of the sqlite-autoconf file.
Run the following commands, replacing [version number] with the SQLite version:
tar zxvf sqlite-autoconf-[version number].tar.gz cd sqlite-autoconf-[version number] ./configure --prefix=/usr/local make make install