Skip to content

Commit 86115b6

Browse files
authored
Update guide_virtualenv.md
1 parent 6f48709 commit 86115b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scanner/etc/guide_virtualenv.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ brew install postgresql
2525
- Refer to the [Installation Guide][install] for how to install Python.
2626
- Install python-dev, python-distutils according to the python version you are using.
2727
```
28-
$ sudo apt-get install python3.8 python3-pip python3.8-dev python3.8-distutils
28+
$ sudo apt-get install python3.10 python3-pip python3.10-dev python3.10-distutils
2929
```
3030

3131
[install]: https://realpython.com/installing-python
@@ -36,11 +36,11 @@ brew install postgresql
3636
See the [Python virtaulenv page][venv] for details.
3737
```
3838
$ pip3 install virtualenv
39-
$ virtualenv -p /usr/bin/python3.8 venv
39+
$ virtualenv -p /usr/bin/python3.10 venv
4040
$ source venv/bin/activate
4141
```
4242

43-
[venv]: https://docs.python.org/3.8/library/venv.html
43+
[venv]: https://docs.python.org/3.10/library/venv.html
4444

4545
## ⌨️ <a name="command"></a>Virtualenv commands
4646

0 commit comments

Comments
 (0)