Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,13 @@ A related option is to use VS Code Dev Containers, which will open the project i
- Create a new folder `contoso-chat` and `cd` into it
- Run this command to download project template. Note that this command will initialize a git repository, so you do not need to clone this repository.
```bash
azd init -t contoso-chat-openai-prompty
azd init -t contoso-chat
```
1. **Install dependencies** for the project, manually. Note that this is done for you automatically if you use the dev container options above.
```bash
cd src/api
python -m venv .venv # Create python virtual environment
.venv/Scripts/activate # Activate the virtual environment
pip install -r requirements.txt
```

Expand Down