File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -30,17 +30,23 @@ cd mypy
3030#### (3) Create then activate a virtual environment
3131
3232``` bash
33- # On Windows, the commands may be slightly different. For more details, see
34- # https://docs.python.org/3/library/venv.html#creating-virtual-environments
3533python3 -m venv venv
3634source venv/bin/activate
3735```
3836
37+ ``` bash
38+ # For Windows use
39+ python -m venv venv
40+ . venv/Scripts/activate
41+
42+ # For more details, see https://docs.python.org/3/library/venv.html#creating-virtual-environments
43+ ```
44+
3945#### (4) Install the test requirements and the project
4046
4147``` bash
42- python3 -m pip install -r test-requirements.txt
43- python3 -m pip install -e .
48+ python -m pip install -r test-requirements.txt
49+ python -m pip install -e .
4450hash -r # This resets shell PATH cache, not necessary on Windows
4551```
4652
You can’t perform that action at this time.
0 commit comments