forked from vllm-project/vllm
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6c7a90c
commit 1bc82a1
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Install-vllm-for-bare-metal | ||
A shell script for vllm installatoin on bare-metal | ||
|
||
|
||
### Description | ||
The script is used to build and install vllm and its dependencies from source code. Build and install from source code helps to achieve best performance. | ||
|
||
Not all dependencies are required for vllm installation, it depends on use cases. The script comments out all optional dependencies, and just leaves pytorch and vllm installation. If you want to install dependencies from this script, you can uncomment specific script block to install dependencies. | ||
|
||
### Using the script | ||
Go to your working directory and | ||
``` | ||
bash install-vllm-for-bare-metal.sh | ||
``` | ||
Please note, for optional dependencies, the script will clone its source code into the working directory. If you do not want to keep source code for optional dependencies, you can delete them after installation. |