Skip to main content

SQLLite - Installation on RedHat 9

Installation Steps
Install the SQLite package: Run the following command in your terminal to install the main SQLite package.
  1. Install
    sudo dnf install sqlite
    The system will prompt you to confirm the installation. Type y and press Enter to proceed.
  2. Verify the installation: After the installation is complete, you can verify it by checking the installed SQLite version.

    sqlite3 --version
  3. Install development tools (optional): If you plan to compile other software or programming language bindings that require SQLite development headers (e.g., for Python or Ruby bindings), you may also need the sqlite-devel package.

    sudo dnf install sqlite-devel