diff --git a/.github/workflows/run-notebooks.yml b/.github/workflows/run-notebooks.yml index 8a6c45c7..dbb974f0 100644 --- a/.github/workflows/run-notebooks.yml +++ b/.github/workflows/run-notebooks.yml @@ -27,10 +27,10 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install jupyter - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - pip install . + python -m pip install jupyter + python -m pip install install -r requirements.txt - name: Run tutorial notebooks run: | jupyter execute docs/tutorials/*.ipynb + shell: bash