Installing SQLite
- Use PuTTY to log in to the server as the root user.
- Run the following command to decompress the package:
tar -xvf sqlite-autoconf-3340100.tar.gz
- Run the following command to switch to the directory that contains decompressed files:
cd /path/to/SQLITE/sqlite-autoconf-3340100
- Run the following commands to configure and install the software:
./configure --prefix=/path/to/SQLITE
make -j 64
make install
Parent topic: Installing Dependencies