Skip to content

Commit 37a5247

Browse files
committed
response to edits
1 parent 675175f commit 37a5247

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

contributing.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
11
## Getting Started
22

3+
Follow the steps below for setup:
34
```
45
git clone https://github.com/microsoft/vscode-python-debugger
56
cd vscode-python-debugger
67
npm ci
7-
# Create virtual environment as appropriate for your shell or use the command "Python: Create Environment" in VS Code
8+
```
9+
10+
Create virtual environment as appropriate for your shell or use the command `Python: Create Environment` in VS Code. Then activate it appropriate for your shell.
11+
```
812
python3 -m venv .venv
9-
# Activate the virtual environment as appropriate for your shell like:
13+
# Activate the virtual environment
1014
# ".venv/Scripts/activate.bat"
1115
# On bash/zsh it's ...
1216
source .venv/bin/activate
17+
```
18+
19+
Install then setup with nox.
20+
```
1321
python3 -m pip install nox
1422
nox --session setup_repo
1523
```

0 commit comments

Comments
 (0)