Skip to content

Commit de9b0eb

Browse files
authored
Enhance README with Windows activation instructions
Updated installation instructions for Windows users and clarified virtual environment activation.
1 parent f5ab1da commit de9b0eb

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,17 @@ To run locally, install Jupyter Book in a virtual environment then build:
2121
```shell
2222
python -m venv venv
2323
source venv/bin/activate
24-
pip install --upgrade pip
25-
pip install -r requirements.txt
24+
python -m pip install --upgrade pip
25+
python -m pip install -r requirements.txt
2626
jupyter-book build TeSS_docs/
2727
```
2828

29+
If you are using Windows, replace the second line with:
30+
31+
```shell
32+
source venv/Scripts/activate
33+
```
34+
2935
And when you have finished, to quit virtual environment:
3036

3137
```shell

0 commit comments

Comments
 (0)