venv: add page (#10078)

* venv: add page

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Franco Gil <45880759+realFranco@users.noreply.github.com>
pull/23/head
aaryan200 2023-05-01 15:21:40 +05:30 committed by GitHub
parent 415ebf8388
commit 993fd046fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages/common/venv.md Normal file
View File

@ -0,0 +1,20 @@
# venv
> Create lightweight virtual environments in python.
> More information: <https://docs.python.org/3/library/venv.html>.
- Create a python virtual environment:
` python -m venv {{path/to/virtual_environment}}`
- Activate the virtual environment (Linux and Mac OS):
`source {{path/to/virtual_environment}}/bin/activate`
- Activate the virtual environment (Windows):
`{{path\to\virtual_environment}}\Scripts\activate.bat`
- Deactivate the virtual environment:
`deactivate`