diff --git a/c/cjson/README.md b/c/cjson/README.md index a76286a9..2c257f46 100644 --- a/c/cjson/README.md +++ b/c/cjson/README.md @@ -11,6 +11,10 @@ LLGo wrapper of DaveGamble/cJSON ```sh brew install cjson ``` +### on linux +```sh +apt-get install -y libcjson-dev +``` ### from source code ```sh git clone https://github.com/goplus/cjson.git diff --git a/c/sqlite/README.md b/c/sqlite/README.md index f6e86dc2..37927d06 100644 --- a/c/sqlite/README.md +++ b/c/sqlite/README.md @@ -8,6 +8,15 @@ LLGo wrapper of sqlite ## How to install +### on macOS (Homebrew) +```sh +brew install sqlite3 +``` +### on linux +```sh +apt-get install -y libsqlite3-dev +``` +### from source code ```sh git clone https://github.com/goplus/sqlite.git cd sqlite