mirror of
https://git.datalinker.icu/vllm-project/vllm.git
synced 2025-12-10 04:44:57 +08:00
Remove python 3.10 requirement (#2040)
This commit is contained in:
parent
eb17212858
commit
31d2ab4aff
@ -72,7 +72,7 @@ Install vLLM with pip or [from source](https://vllm.readthedocs.io/en/latest/get
|
||||
```bash
|
||||
pip install vllm
|
||||
```
|
||||
**NOTE:** The Mixtral model additionally requires `megablocks` which can be installed with pip or [from source](https://github.com/stanford-futuredata/megablocks) on **Python 3.10**:
|
||||
**NOTE:** The Mixtral model additionally requires `megablocks` which can be installed with pip or [from source](https://github.com/stanford-futuredata/megablocks):
|
||||
```bash
|
||||
pip install megablocks
|
||||
```
|
||||
|
||||
@ -35,9 +35,7 @@ try:
|
||||
import megablocks.ops as ops
|
||||
except ImportError:
|
||||
print(
|
||||
"MegaBlocks not found. Please install it by `pip install megablocks`. "
|
||||
"Note that MegaBlocks depends on mosaicml-turbo, which only supports "
|
||||
"Python 3.10 for now.")
|
||||
"MegaBlocks not found. Please install it by `pip install megablocks`.")
|
||||
try:
|
||||
import stk
|
||||
except ImportError:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user