| 1 | # ============================================================================= |
| 2 | # Open-source DMD inference - conda environment |
| 3 | # |
| 4 | # Create with: |
| 5 | # conda env create -f environment.yml |
| 6 | # conda activate echo-long |
| 7 | # |
| 8 | # This installs Python 3.11 plus ffmpeg from conda-forge, then pulls the |
| 9 | # Python deps (torch family with CUDA 12.8) from pip via requirements.txt. |
| 10 | # ============================================================================= |
| 11 | name: echo-long |
| 12 | channels: |
| 13 | - conda-forge |
| 14 | dependencies: |
| 15 | - python=3.11 |
| 16 | - pip |
| 17 | - ffmpeg>=6 |
| 18 | - pip: |
| 19 | - --extra-index-url https://download.pytorch.org/whl/cu128 |
| 20 | - -r requirements.txt |
| 21 |