Skip to content

Commit

Permalink
Explicit PyTorch installation for MacOS
Browse files Browse the repository at this point in the history
  • Loading branch information
awerdich committed Sep 15, 2024
1 parent 5cf406e commit e2bc1a3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: install Pipenv, Pipfile
run: |
python -m pip install pipenv
pipenv install --dev --ignore-pipfile --python=${{ matrix.python-version }}
- name: install Pipenv
run: python -m pip install pipenv

- name: install PyTorch
run: pipenv run python -m pip install torch torchvision torchaudio
run: |
python -m pip install torch torchvision torchaudio
pipenv install --dev --ignore-pipfile --python=${{ matrix.python-version }}
- name: install detectron2
run: bash ./bash_scripts/install_detectron
Expand Down

0 comments on commit e2bc1a3

Please sign in to comment.