diff --git a/.gitignore b/.gitignore index 53f22cf..3946243 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -samples +/samples extensions # LLM models diff --git a/README.md b/README.md index 95ed411..f879a66 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ A hybrid search engine built on SQLite with [SQLite AI](https://github.com/sqlit ## Installation ```bash -python -m venv .venv +python3 -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate pip install sqlite-rag ``` @@ -114,11 +114,11 @@ git clone https://github.com/sqliteai/sqlite-rag.git cd sqlite-rag # Create virtual environment -python -m venv .venv +python3 -m venv .venv source .venv/bin/activate # On Windows: .venv\Scripts\activate # Install in development mode -pip install -e .[dev] +pip install -e '.[dev]' ``` ## How It Works