-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Update pip install to use --extra-index-url for ipex package #10557
Conversation
0e6da75
to
d532efa
Compare
@@ -393,15 +393,15 @@ We recommend using [miniconda](https://docs.conda.io/en/latest/miniconda.html) t | |||
conda create -n llm python=3.9 | |||
conda activate llm | |||
|
|||
pip install --pre --upgrade ipex-llm[xpu] -f https://developer.intel.com/ipex-whl-stable-xpu | |||
pip install --pre --upgrade ipex-llm[xpu] --extra-index-url https://developer.intel.com/ipex-whl-stable-xpu |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the link is incorrect; see https://ipex-llm.readthedocs.io/en/latest/doc/LLM/Quickstart/install_windows_gpu.html#install-ipex-llm
The url is incorrect; see https://ipex-llm.readthedocs.io/en/latest/doc/LLM/Quickstart/install_windows_gpu.html#install-ipex-llm |
Updated |
Update github actions to pip install from |
python/llm/README.md
Outdated
@@ -125,7 +125,7 @@ You may install **`ipex-llm`** on Intel GPU as follows: | |||
```bash |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just remove this file
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file hasn't been removed @chtanch
@@ -12,7 +12,7 @@ mkdir -p /opt/intel/oneccl | |||
mv ./_install/env /opt/intel/oneccl | |||
# 2. install torch and ipex | |||
pip install torch==2.1.0 | |||
pip install intel_extension_for_pytorch==2.1.0 -f https://developer.intel.com/ipex-whl-stable-cpu | |||
pip install intel_extension_for_pytorch==2.1.0 --extra-index-url https://developer.intel.com/ipex-whl-stable-cpu |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this url is incorrect
@@ -56,7 +56,7 @@ The easiest ways to install `ipex-llm` is the following commands: | |||
conda create -n llm python=3.9 libuv | |||
conda activate llm | |||
|
|||
pip install --pre --upgrade ipex-llm[xpu] -f https://developer.intel.com/ipex-whl-stable-xpu | |||
pip install --pre --upgrade ipex-llm[xpu] --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
add CN link, either in a separate tab or in the note.
Need to add CN link as well, either in a separate tab or a note |
7d9f195
to
133e023
Compare
133e023
to
ed3c061
Compare
Applied changes in comments. Preview - https://chtanch-docs.readthedocs.io/en/update_pip_install/doc/LLM/Overview/install_gpu.html |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Will merge it after removing the README.
The documents look nice and no issue observed. |
Description
Update ipex-llm install from
pip install --pre --upgrade ipex-llm[xpu] -f https://developer.intel.com/ipex-whl-stable-xpu
to
pip install --pre --upgrade ipex-llm[xpu] --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/
in readmes, code comments, and
python/llm/example/CPU/Deepspeed-AutoTP/install.sh
Update
pip install oneccl_bind_pt==2.1.100 -f https://developer.intel.com/ipex-whl-stable-xpu
to
pip install oneccl_bind_pt==2.1.100 --extra-index-url https://pytorch-extension.intel.com/release-whl/stable/xpu/us/