python3 -m venv .venv
On UNIX (macOS/Linux)
source .venv/bin/activate
On Windows
.venv\Scripts\activate
pip install -r requirements.txt
python3 juris.py
Codespace_setup.mp4
Skip to sections
00:00 - Create Python virtual environment00:13 - Activate virtual environment
00:18 - Install dependencies
04:20 - sqlite3 error (Error + how to fix)
05:15 - Run Application
- Run
pip install pysqlite3-binary
- Open
juris.py
and uncomment (not delete!) line 14 by removing#
This will toggle from using the first block (line 15) to using the second block (line 17 - 20)14 """ 15 import chromadb 16 """ 17 import sys 18 __import__('pysqlite3') 19 sys.modules['sqlite3'] = sys.modules.pop('pysqlite3') 20 import chromadb 21 #"""
- Save and run
juris.py