Skip to content

Commit 9e7f2a3

Browse files
committed
fix: Modify Contributing.md instructions to user venv creation command that is more standardized
1 parent b57e0f5 commit 9e7f2a3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ Open a Bash terminal in the `dash` repository, Git Bash terminal for example on
8080

8181
On some Linux/Mac environments, use `.` instead of `source`
8282
```bash
83-
$ python3 -m venv .venv/dev
84-
$ source .venv/dev/bin/activate
83+
$ python3 -m venv venv
84+
$ source venv/bin/activate
8585
```
8686
- Windows:
8787
```bash
88-
$ python -m venv .venv/dev
89-
$ source .venv/dev/scripts/activate
88+
$ python -m venv venv
89+
$ source venv/scripts/activate
9090
```
9191

9292
Install dash and dependencies:

0 commit comments

Comments
 (0)