# SQLLite - Installation on RedHat 9

<div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk-installation-steps" jsaction="" jscontroller="a7qCn" jsuid="nfZwfc_13" role="heading">Installation Steps</div><div aria-level="3" class="otQkpb" data-animation-nesting="" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c" id="bkmrk-install-the-sqlite-p" jsaction="" jscontroller="a7qCn" jsuid="nfZwfc_13" role="heading">**Install the SQLite package:** Run the following command in your terminal to install the main SQLite package.</div>1. <div class="r1PmQe" data-hveid="CAYQAQ" data-processed="true" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="nfZwfc_1c,nfZwfc_1d,nfZwfc_1e" jsaction="" jscontroller="HP6Sjf" jsuid="nfZwfc_1b"><div data-processed="true"><div class="pHpOfb" data-animation-atomic="" data-processed="true">Install <div class="pCTyYe" data-processed="true" dir="ltr"></div></div></div></div>```bash
    sudo dnf install sqlite
    ```
    
    <span class="T286Pc" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c">The system will prompt you to confirm the installation. Type `y` and press `Enter` to proceed.</span>
2. <span class="T286Pc" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c">**Verify the installation:** After the installation is complete, you can verify it by checking the installed SQLite version.</span><div class="r1PmQe" data-hveid="CAYQBA" data-processed="true" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="nfZwfc_1o,nfZwfc_1p,nfZwfc_1q" jsaction="" jscontroller="HP6Sjf" jsuid="nfZwfc_1n"><div data-processed="true"><div class="pHpOfb" data-animation-atomic="" data-processed="true">  
    <div class="pCTyYe" data-processed="true" dir="ltr"></div></div></div></div>```bash
    sqlite3 --version
    ```
3. <span class="T286Pc" data-processed="true" data-sfc-cb="" data-sfc-cp="" data-sfc-root="c">**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.</span><div class="r1PmQe" data-hveid="CAYQBw" data-processed="true" data-sfc-cb="" data-sfc-root="c" data-wiz-uids="nfZwfc_1y,nfZwfc_1z,nfZwfc_20" jsaction="" jscontroller="HP6Sjf" jsuid="nfZwfc_1x"><div data-processed="true"><div class="pHpOfb" data-animation-atomic="" data-processed="true">  
    <div class="pCTyYe" data-processed="true" dir="ltr"></div></div></div></div>```
    sudo dnf install sqlite-devel
    ```