8000 [Doc] update guide install mkl-static from conda to pip by pytorchbot · Pull Request #133328 · pytorch/pytorch · GitHub
[go: up one dir, main page]

Skip to content

[Doc] update guide install mkl-static from conda to pip #133328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[Doc] update guide install mkl-static from conda to pip (#130026)
<img width="619" alt="image" src="https://github.com/pytorch/pytorch/assets/8433590/4ac3ca68-57dc-42c7-ac7a-876dc377ebcf">

Conda intel channel is not avaliable now.
Use `pip` install instead of `conda`.

`Windows` and `Linux` are avaliable:
Binary list: https://pypi.org/project/mkl-static/#files

`MacOS` is avaliable for old version:
https://pypi.org/project/mkl-static/2021.3.0/#files

TODO:
1. cherry-pick to `release/2.4` branch, @atalman .
2. fix it also in `release/2.3` branch: #131853

Pull Request resolved: #130026
Approved by: https://github.com/jgong5, https://github.com/atalman

(cherry picked from commit 484852c)
  • Loading branch information
xuhancn authored and pytorchbot committed Aug 13, 2024
commit b724c7f77b9d1844465c4cd54836b980ed8c2e82
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ pip install -r requirements.txt
**On Linux**

```bash
conda install intel::mkl-static intel::mkl-include
pip install mkl-static mkl-include
# CUDA only: Add LAPACK support for the GPU if needed
conda install -c pytorch magma-cuda121 # or the magma-cuda* that matches your CUDA version from https://anaconda.org/pytorch/repo

Expand All @@ -221,15 +221,15 @@ make triton

```bash
# Add this package on intel x86 processor machines only
conda install intel::mkl-static intel::mkl-include
pip install mkl-static mkl-include
# Add these packages if torch.distributed is needed
conda install pkg-config libuv
```

**On Windows**

```bash
conda install intel::mkl-static intel::mkl-include
pip install mkl-static mkl-include
# Add these packages if torch.distributed is needed.
# Distributed package support on Windows is a prototype feature and is subject to changes.
conda install -c conda-forge libuv=1.39
Expand Down
Loading
0