Skip to content

Commit 864f866

Browse files
authored
Changing command to create a virtual environment (#311)
`python3 -m venv venv` instead of `python -m venv venv`
1 parent f9e63da commit 864f866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ sudo apt-get install graphviz
111111
* For non-Debian/Ubuntu users, follow the directions at [the GraphViz download site](https://graphviz.org/download).
112112
```bash
113113
# Create and activate a virtual environment
114-
python -m venv venv
114+
python3 -m venv venv
115115
source venv/bin/activate
116116
# update the version of pip, setuptools, and wheel
117117
(venv) pip install -U pip setuptools wheel

0 commit comments

Comments
 (0)