mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
16 lines
328 B
Markdown
16 lines
328 B
Markdown
# Install SQLite Dependency
|
|
|
|
**Fedora 31**:
|
|
|
|
`sudo dnf -y install sqlite-devel`
|
|
|
|
|
|
**Ubuntu 20.04**:
|
|
|
|
`sudo apt install -y libsqlite3-dev`
|
|
|
|
|
|
**Windows**:
|
|
- Download the source zip from [SQLite Downloads](https://sqlite.org/download.html)
|
|
- Create a new `sqlite` subfolder inside `v/thirdparty`
|
|
- Extract the zip into that folder
|