pytorch - 💡(How to fix) Fix torch xpu 2.10 2.11 2.12 installation failed by missing intel-cmplr-lib-rt

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…

Error Message

$ pip install torch==2.12 --index-url https://download.pytorch.org/whl/xpu

ERROR: Could not find a version that satisfies the requirement intel-cmplr-lib-rt==2025.3.2 (from torch) ERROR: No matching distribution found for intel-cmplr-lib-rt==2025.3.2

Root Cause

Installing PyTorch 2.12 for XPU from the official index fails because intel-cmplr-lib-rt==2025.3.2 is incorrectly removed in the release channel https://download.pytorch.org/whl/xpu, and we observed the same behavior in the XPU nightly channel w/ another additional wheel package - tcmlib https://github.com/pytorch/test-infra/issues/8115.

Code Example

$ pip install torch==2.12 --index-url https://download.pytorch.org/whl/xpu

ERROR: Could not find a version that satisfies the requirement intel-cmplr-lib-rt==2025.3.2 (from torch)
ERROR: No matching distribution found for intel-cmplr-lib-rt==2025.3.2

---

pip install intel-cmplr-lib-rt==2025.3.2
pip install torch==2.12 --index-url https://download.pytorch.org/whl/xpu
RAW_BUFFERClick to expand / collapse

🐛 Describe the bug

Installing PyTorch 2.12 for XPU from the official index fails because intel-cmplr-lib-rt==2025.3.2 is incorrectly removed in the release channel https://download.pytorch.org/whl/xpu, and we observed the same behavior in the XPU nightly channel w/ another additional wheel package - tcmlib https://github.com/pytorch/test-infra/issues/8115.

$ pip install torch==2.12 --index-url https://download.pytorch.org/whl/xpu

ERROR: Could not find a version that satisfies the requirement intel-cmplr-lib-rt==2025.3.2 (from torch)
ERROR: No matching distribution found for intel-cmplr-lib-rt==2025.3.2

Temporary solution

Install intel-cmplr-lib-rt from PyPI official channel first, then install torch:

pip install intel-cmplr-lib-rt==2025.3.2
pip install torch==2.12 --index-url https://download.pytorch.org/whl/xpu

Expected behavior

pip install torch==2.12 --index-url https://download.pytorch.org/whl/xpu should work without requiring manual pre-installation of dependencies.

Environment

  • PyTorch version: 2.12.0+xpu
  • Python version: 3.10
  • OS: Linux x86_64
  • Install method: pip with https://download.pytorch.org/whl/xpu

cc @ezyang @gchanan @kadeng @msaroufim @malfet @atalman @tinglvv @nWEIdia @gujinghui @EikanWang @fengyuan14 @guangyey

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

FAQ

Expected behavior

pip install torch==2.12 --index-url https://download.pytorch.org/whl/xpu should work without requiring manual pre-installation of dependencies.

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

pytorch - 💡(How to fix) Fix torch xpu 2.10 2.11 2.12 installation failed by missing intel-cmplr-lib-rt