You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To begin, install Hatch from the command line using [pipx](https://pipx.pypa.io/stable/)
8
+
9
+
```bash
10
+
pipx install hatch
11
+
```
12
+
13
+
:::{tip}
14
+
Hatch also provides pre-build binaries available from common OS package managers or directly from
15
+
the [hatch website](https://hatch.pypa.io/latest/install/).
16
+
:::
9
17
10
18
:::{tip}
11
-
If you are comfortable using [pipx](https://pipx.pypa.io/stable/) to install hatch, we encourage you to do so. pipx will ensure that your package is available across all of your Python environments on your computer rather than just in the environment that you install it into.
19
+
Hatch can also be installed directly using `pip` or `conda`, but we encourage you to use `pipx`.
20
+
This is because `pipx` will ensure that your package is available across all of your Python
21
+
environments on your computer rather than just in the environment that you install it into.
12
22
13
-
However if you are not sure about pipx, you can install hatch using pip or conda.
23
+
If you install hatch this way you will have to take care that the environment it is installed into
24
+
is activated for the command to work.
14
25
:::
15
26
27
+
You can check that hatch is working properly by issuing a simple command to get the version
28
+
29
+
```bash
30
+
hatch --version
31
+
# Hatch, version 1.9.4
32
+
```
33
+
34
+
Note the version numbers will likely be different
35
+
16
36
## Configure hatch
17
37
18
38
Once you have installed hatch, you will want to customize the configuration.
0 commit comments