Skip to content

Commit

Permalink
pip -> pip3
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusOrsoe committed Apr 29, 2024
1 parent f6c87e6 commit 9cb6125
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ runs:
shell: bash
- name: Install dependencies
run: |
pip install --upgrade pip>=20
pip install wheel setuptools==59.5.0
pip3 install --upgrade pip>=20
pip3 install wheel setuptools==59.5.0
shell: bash
- name: Install package
run: |
echo requirements/torch_${{ inputs.hardware }}.txt ${{ env.PIP_FLAGS }} .${{ inputs.extras }}
pip install -r requirements/torch_${{ inputs.hardware }}.txt ${{ env.PIP_FLAGS }} .${{ inputs.extras }}
pip3 install -r requirements/torch_${{ inputs.hardware }}.txt ${{ env.PIP_FLAGS }} .${{ inputs.extras }}
shell: bash

0 comments on commit 9cb6125

Please sign in to comment.