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 +```