Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bot/resources/tags/venv.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ embed:

Virtual environments are isolated Python environments, which make it easier to keep your system clean and manage dependencies. By default, when activated, only libraries and scripts installed in the virtual environment are accessible, preventing cross-project dependency conflicts, and allowing easy isolation of requirements.

To create a new virtual environment, you can use the standard library `venv` module: `python3 -m venv .venv` (replace `python3` with `python` or `py` on Windows)
To create a new virtual environment, you can use the standard library `venv` module: `python3 -m venv .venv` (replace `python3` with `py` on Windows)

Then, to activate the new virtual environment:

Expand Down