mirror of
https://github.com/arc53/DocsGPT
synced 2024-11-16 00:12:46 +00:00
Added alternative virtual environment activation command for Windows users in README
This commit is contained in:
parent
b64495f7a9
commit
0e330f983b
@ -124,10 +124,16 @@ Make sure you have Python 3.10 or 3.11 installed.
|
||||
(check out [`application/core/settings.py`](application/core/settings.py) if you want to see more config options.)
|
||||
|
||||
2. (optional) Create a Python virtual environment:
|
||||
On Mac OS or Linux
|
||||
```commandline
|
||||
python -m venv venv
|
||||
. venv/bin/activate
|
||||
```
|
||||
On Windows
|
||||
```commandline
|
||||
python -m venv venv
|
||||
venv/Scripts/activate
|
||||
```
|
||||
3. Change to the `application/` subdir and install dependencies for the backend:
|
||||
```commandline
|
||||
pip install -r application/requirements.txt
|
||||
|
Loading…
Reference in New Issue
Block a user