Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 760 Bytes

environment.md

File metadata and controls

38 lines (25 loc) · 760 Bytes

Environment Setup

Clone This Repository

git clone https://github.com/microsoft/PIKE-RAG.git

Set Up Python Environment

Create a Python environment for this repo, and install the basic package requirements:

pip install -r requirements.txt
pip install -r examples/requirements.txt

Set Up the PYTHONPATH Before Running

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