Skip to content

Commit 936df1c

Browse files
authored
[Doc] Fix cann related urls (vllm-project#2106)
### What this PR does / why we need it? Fix cann related urls in installation doc. ### Does this PR introduce _any_ user-facing change? The users install cann manually could use the correct url after this pr ### How was this patch tested? N/A - vLLM version: v0.10.0 - vLLM main: vllm-project/vllm@5bbaf49 Signed-off-by: MengqingCao <[email protected]>
1 parent 4fcca13 commit 936df1c

File tree

1 file changed

+9
-10
lines changed

1 file changed

+9
-10
lines changed

docs/source/installation.md

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -78,20 +78,19 @@ source vllm-ascend-env/bin/activate
7878
pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple attrs 'numpy<2.0.0' decorator sympy cffi pyyaml pathlib2 psutil protobuf scipy requests absl-py wheel typing_extensions
7979

8080
# Download and install the CANN package.
81-
wget --header="Referer: https://www.hiascend.com/" https://ascend-repo.obs.cn-east-2.myhuaweicloud.com/Milan-ASL/Milan-ASL%20V100R001C22B800TP052/Ascend-cann-toolkit_8.2.rc1_linux-"$(uname -i)".run
82-
chmod +x ./Ascend-cann-toolkit_8.2.rc1_linux-"$(uname -i)".run
83-
./Ascend-cann-toolkit_8.2.rc1_linux-"$(uname -i)".run --full
81+
wget --header="Referer: https://www.hiascend.com/" https://ascend-repo.obs.cn-east-2.myhuaweicloud.com/CANN/CANN%208.2.RC1/Ascend-cann-toolkit_8.2.RC1_linux-"$(uname -i)".run
82+
chmod +x ./Ascend-cann-toolkit_8.2.RC1_linux-"$(uname -i)".run
83+
./Ascend-cann-toolkit_8.2.RC1_linux-"$(uname -i)".run --full
8484
# https://ascend-repo.obs.cn-east-2.myhuaweicloud.com/Milan-ASL/Milan-ASL%20V100R001C22B800TP052/Ascend-cann-kernels-910b_8.2.rc1_linux-aarch64.run
8585

8686
source /usr/local/Ascend/ascend-toolkit/set_env.sh
87+
wget --header="Referer: https://www.hiascend.com/" https://ascend-repo.obs.cn-east-2.myhuaweicloud.com/CANN/CANN%208.2.RC1/Ascend-cann-kernels-910b_8.2.RC1_linux-"$(uname -i)".run
88+
chmod +x ./Ascend-cann-kernels-910b_8.2.RC1_linux-"$(uname -i)".run
89+
./Ascend-cann-kernels-910b_8.2.RC1_linux-"$(uname -i)".run --install
8790

88-
wget --header="Referer: https://www.hiascend.com/" https://ascend-repo.obs.cn-east-2.myhuaweicloud.com/Milan-ASL/Milan-ASL%20V100R001C22B800TP052/Ascend-cann-kernels-910b_8.2.rc1_linux-"$(uname -i)".run
89-
chmod +x ./Ascend-cann-kernels-910b_8.2.rc1_linux-"$(uname -i)".run
90-
./Ascend-cann-kernels-910b_8.2.rc1_linux-"$(uname -i)".run --install
91-
92-
wget --header="Referer: https://www.hiascend.com/" https://ascend-repo.obs.cn-east-2.myhuaweicloud.com/Milan-ASL/Milan-ASL%20V100R001C22B800TP052/Ascend-cann-nnal_8.2.rc1_linux-"$(uname -i)".run
93-
chmod +x ./Ascend-cann-nnal_8.2.rc1_linux-"$(uname -i)".run
94-
./Ascend-cann-nnal_8.2.rc1_linux-"$(uname -i)".run --install
91+
wget --header="Referer: https://www.hiascend.com/" https://ascend-repo.obs.cn-east-2.myhuaweicloud.com/CANN/CANN%208.2.RC1/Ascend-cann-nnal_8.2.RC1_linux-"$(uname -i)".run
92+
chmod +x ./Ascend-cann-nnal_8.2.RC1_linux-"$(uname -i)".run
93+
./Ascend-cann-nnal_8.2.RC1_linux-"$(uname -i)".run --install
9594

9695
source /usr/local/Ascend/nnal/atb/set_env.sh
9796
```

0 commit comments

Comments
 (0)