generated from vanHeemstraSystems/template-default-repository
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
68c3a7f
commit fb42f6c
Showing
2 changed files
with
27 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,39 @@ | ||
# 200 - Requirements | ||
|
||
We use [pipx](https://github.com/pypa/pipx?tab=readme-ov-file#install-pipx) instead of ```pip```, for isolation. | ||
|
||
1. Install pipx: | ||
see https://github.com/pypa/pipx?tab=readme-ov-file#install-pipx for platform (Linux, macOS, Windows) specifics. | ||
|
||
Linux: | ||
```bash | ||
$ python3 -m pip install --user pipx | ||
$ python3 -m pipx ensurepath | ||
$ source ~/.bashrc | ||
$ sudo pipx ensurepath --global # optional to allow pipx actions with --global argument | ||
``` | ||
|
||
macOS: | ||
```bash | ||
$ brew install pipx | ||
$ pipx ensurepath | ||
$ sudo pipx ensurepath --global # optional to allow pipx actions with --global argument | ||
``` | ||
|
||
Windows: | ||
```bash | ||
$ scoop install pipx | ||
$ pipx ensurepath | ||
``` | ||
|
||
2. Install python with pipx: | ||
```bash | ||
$ pipx install python | ||
``` | ||
|
||
We use [hatch](https://hatch.pypa.io/) for project management. | ||
2. Install hatch: | ||
|
||
1. Install hatch: | ||
```bash | ||
$ pipx install hatch | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters