git clone https://github.com/microsoft/PIKE-RAG.git
Create a Python environment for this repo, and install the basic package requirements:
pip install -r requirements.txt
pip install -r examples/requirements.txt
In Windows,
$Env:PYTHONPATH=PATH-TO-THIS-REPO
# If you exactly under this repository directory, you can do it by
$Env:PYTHONPATH=$PWD
In Linux / Mac OS,
export PYTHONPATH=PATH-TO-THIS-REPO
# If you are exactly under the repository directory, you can do it by
export PYTHONPATH=$PWD
Return to the main README