Skip to content

Commit 59f5e44

Browse files
Update README.md to add windows virtual env instructions
1 parent 17de1d1 commit 59f5e44

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,17 @@ This quickstart app builds on top of the example code above, with additional fea
3737

3838
4. Create a new virtual environment:
3939

40-
```bash
41-
$ python -m venv venv
42-
$ . venv/bin/activate
43-
```
40+
- macOS:
41+
```bash
42+
$ python -m venv venv
43+
$ . venv/bin/activate
44+
```
45+
46+
- Windows:
47+
```cmd
48+
> python -m venv venv
49+
> .\venv\Scripts\activate
50+
```
4451

4552
5. Install the requirements:
4653

0 commit comments

Comments
 (0)