Unverified Commit 31d2ab4a authored by Woosuk Kwon's avatar Woosuk Kwon Committed by GitHub
Browse files

Remove python 3.10 requirement (#2040)

parent eb172128
...@@ -72,7 +72,7 @@ Install vLLM with pip or [from source](https://vllm.readthedocs.io/en/latest/get ...@@ -72,7 +72,7 @@ Install vLLM with pip or [from source](https://vllm.readthedocs.io/en/latest/get
```bash ```bash
pip install vllm 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 ```bash
pip install megablocks pip install megablocks
``` ```
......
...@@ -35,9 +35,7 @@ try: ...@@ -35,9 +35,7 @@ try:
import megablocks.ops as ops import megablocks.ops as ops
except ImportError: except ImportError:
print( print(
"MegaBlocks not found. Please install it by `pip install megablocks`. " "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.")
try: try:
import stk import stk
except ImportError: except ImportError:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment