Updated installation instructions for windows, linux in readme (#741)

This commit is contained in:
Md. Shahnewaz Siddique
2024-05-24 04:21:25 +06:00
committed by GitHub
parent 4511c6ae7c
commit 3af06a3d5a

View File

@@ -43,7 +43,7 @@ git clone https://github.com/khoj-ai/khoj && cd khoj
python3 -m venv .venv && .venv\Scripts\activate
# Install Khoj for Development
pip install -e .[dev]
pip install -e '.[dev]'
```
</TabItem>
<TabItem value="unix" label="Linux">
@@ -55,7 +55,7 @@ git clone https://github.com/khoj-ai/khoj && cd khoj
python3 -m venv .venv && source .venv/bin/activate
# Install Khoj for Development
pip install -e .[dev]
pip install -e '.[dev]'
```
</TabItem>
</Tabs>