Commit d4c4307
Fix docker build issue after 164575 (pytorch#164779)
Fix docker build issue after 164575 (pytorch#164774)
Looks like pytorch#164575 introduced an issue.
The command is wrong:
```
conda install -c "whl/nightly" -y python=3.11 conda=25.7.0
```
Should be just using default conda channel:
```
conda install -y python=3.11 conda=25.7.0
```
Pull Request resolved: pytorch#164774
Approved by: https://github.com/Camyll
(cherry picked from commit c1f40d3)
Co-authored-by: atalman <[email protected]>1 parent 3b57315 commit d4c4307
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
53 | 53 | | |
54 | 54 | | |
55 | 55 | | |
56 | | - | |
| 56 | + | |
57 | 57 | | |
58 | 58 | | |
59 | 59 | | |
| |||
0 commit comments