Skip to content

Commit

Permalink
Change to 'pip install .. --extra-index-url' for remaining files
Browse files Browse the repository at this point in the history
  • Loading branch information
chtanch committed Mar 27, 2024
1 parent cacd619 commit 0e6da75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion python/llm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ You may install **`ipex-llm`** on Intel GPU as follows:
```bash
# below command will install intel_extension_for_pytorch==2.0.110+xpu as default
# you can install specific ipex/torch version for your need
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
```
> Note: `ipex-llm` has been tested on Python 3.9
Expand Down
2 changes: 1 addition & 1 deletion python/llm/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def setup_package():
]
all_requires += CONVERT_DEP

# Linux install with -f https://developer.intel.com/ipex-whl-stable-xpu
# Linux install with --extra-index-url https://developer.intel.com/ipex-whl-stable-xpu
xpu_20_requires = copy.deepcopy(all_requires)
xpu_20_requires.remove('torch')
# xpu_20 only works for linux now
Expand Down
2 changes: 1 addition & 1 deletion python/llm/src/ipex_llm/serving/fastchat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pip install --pre --upgrade ipex-llm[all]
To add GPU support for FastChat, you may install **`ipex-llm`** as follows:

```bash
pip install --pre --upgrade ipex-llm[xpu,serving] -f https://developer.intel.com/ipex-whl-stable-xpu
pip install --pre --upgrade ipex-llm[xpu,serving] --extra-index-url https://developer.intel.com/ipex-whl-stable-xpu

```

Expand Down

0 comments on commit 0e6da75

Please sign in to comment.