We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abb80eb commit f819ac1Copy full SHA for f819ac1
.github/workflows/reference_resources.yaml
@@ -82,6 +82,11 @@ jobs:
82
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
83
python -m pip install numpy pillow pytest
84
85
+ - name: Install torchcodec from the wheel
86
+ run: |
87
+ wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`
88
+ echo Installing $wheel_path
89
+ python -m pip install $wheel_path -vvv
90
- name: Check out repo
91
uses: actions/checkout@v3
92
0 commit comments