From 87e226edae8cbece560645f81b14cf4198e17dc7 Mon Sep 17 00:00:00 2001 From: Qiwei Shen <61941245+qiweishen@users.noreply.github.com> Date: Fri, 28 Feb 2025 14:33:18 +0800 Subject: [PATCH] Fixed a command typo in venv.md --- docs/python/venv.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/python/venv.md b/docs/python/venv.md index 7114955..7c3cfd8 100644 --- a/docs/python/venv.md +++ b/docs/python/venv.md @@ -32,7 +32,7 @@ It allows us to avoid this mess (from [xkcd-1987](https://xkcd.com/1987/)): Some useful commands: - create a new venv called "myenv1" (based on the current global version): `pyenv virtualenv myenv1` - - activate it: `penv activate myenv1` + - activate it: `pyenv activate myenv1` - deactivate it: `pyenv deactivate`