From 7bd87c82a7004ea982325f45d80aea7eb0cce7a8 Mon Sep 17 00:00:00 2001 From: Asocia Date: Sun, 9 May 2021 22:34:02 +0300 Subject: [PATCH] TIL: Virtual environment with system packages --- .../virtual-environment-with-system-packages.md | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 command_line_utils/virtual-environment-with-system-packages.md diff --git a/command_line_utils/virtual-environment-with-system-packages.md b/command_line_utils/virtual-environment-with-system-packages.md new file mode 100644 index 0000000..8f46f05 --- /dev/null +++ b/command_line_utils/virtual-environment-with-system-packages.md @@ -0,0 +1,4 @@ +You can use below command to create a virtual environment which contains installed packages: +``` +virtualenv venv --system-site-packages +```