Skip to content

Instantly share code, notes, and snippets.

View zpvk's full-sized avatar
:octocat:
๐Ÿ‘จโ€๐Ÿ’ป | ๐Ÿฝ๏ธ | ๐Ÿ›Œ | ๐Ÿ”

rohan zpvk

:octocat:
๐Ÿ‘จโ€๐Ÿ’ป | ๐Ÿฝ๏ธ | ๐Ÿ›Œ | ๐Ÿ”
View GitHub Profile
@zpvk
zpvk / test.md
Last active September 24, 2021 13:23
PYTHON VIRTUAL ENVIRONMENTS

Creating a Virtual Environment

To create a virtual environment using Python use the following command:
python -m venv <envname>
To activate the environment, use the command:
source env/bin/activate
To deactivate or leave the environment, run the command: