Skip to content

Commit

Permalink
use venv
Browse files Browse the repository at this point in the history
  • Loading branch information
albho committed Jul 8, 2024
1 parent 8f0e0e4 commit 3532043
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/python-demos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,13 @@ jobs:
- uses: actions/checkout@v3

- name: Install dependencies
run: pip3 install -r requirements.txt
run: |
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt
- name: Run demo
run: python3 pv_speaker_demo.py --show_audio_devices
run: |
python3 -m venv .venv
source .venv/bin/activate
python3 pv_speaker_demo.py --show_audio_devices

0 comments on commit 3532043

Please sign in to comment.