mirror of https://github.com/pypa/hatch.git
23 lines
391 B
Markdown
23 lines
391 B
Markdown
# Installation
|
|
|
|
-----
|
|
|
|
## pipx
|
|
|
|
[pipx](https://github.com/pypa/pipx) allows for the global installation of Python applications in isolated environments.
|
|
|
|
```
|
|
pipx install hatch
|
|
```
|
|
|
|
## pip
|
|
|
|
Hatch is available on PyPI and can be installed with [pip](https://pip.pypa.io).
|
|
|
|
```
|
|
pip install hatch
|
|
```
|
|
|
|
!!! warning
|
|
This method modifies the Python environment in which you choose to install.
|