Skip to content

Commit

Permalink
Replace command pip with pip3
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Nov 1, 2024
1 parent 323a106 commit 297e55b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pre_commit_detect_outdated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:

- name: Install pre-commit
run: |-
pip install \
--disable-pip-version-check \
pip3 install \
--disable-pip3-version-check \
--no-warn-script-location \
--user \
pre-commit
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre_commit_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:

- name: Install pre-commit
run: |-
pip install \
--disable-pip-version-check \
pip3 install \
--disable-pip3-version-check \
--user \
--no-warn-script-location \
pre-commit
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ that image in a virtual machine using KVM/QEMU, all without root privileges.
To install the latest release from [PyPI](https://pypi.org/):

```console
# pip install --user grub2-theme-preview
# pip3 install --user grub2-theme-preview
```

To install from a Git clone _for development_:

```console
# pip install --user --editable .
# pip3 install --user --editable .
```

Please make sure to install these _non-PyPI dependencies_ as well:
Expand Down

0 comments on commit 297e55b

Please sign in to comment.