> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/python/pipenv/install-dependencies-system-wide.md).

# Install Dependencies System Wide

By default, `pipenv` installs Python Dependencies in a Virtual Environment, in order to install dependencies system wide, we can use the following command -

```
pipenv install --system
pipenv install --system --dev
```

***Source:*** [***Pipenv Docs***](https://pipenv.pypa.io/en/latest/advanced/#deploying-system-dependencies)
