til/command-line-utils/virtual-environment-with-system-packages.md

5 lines
144 B
Markdown
Raw Permalink Normal View History

You can use below command to create a virtual environment which contains installed packages:
```bash
virtualenv venv --system-site-packages
```