我要评分
获取效率
正确性
完整性
易理解

Installing SQLite

  1. Use PuTTY to log in to the server as the root user.
  2. Run the following command to decompress the package:

    tar -xvf sqlite-autoconf-3340100.tar.gz

  3. Run the following command to switch to the directory that contains decompressed files:

    cd /path/to/SQLITE/sqlite-autoconf-3340100

  4. Run the following commands to configure and install the software:

    ./configure --prefix=/path/to/SQLITE

    make -j 64

    make install