Skip to content

Commit

Permalink
Fix import error msg for megablocks (#2038)
Browse files Browse the repository at this point in the history
  • Loading branch information
WoosukKwon authored Dec 11, 2023
1 parent 2eaa81b commit 6120e5a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions vllm/model_executor/models/mixtral.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@
try:
import megablocks.ops as ops
except ImportError:
print("MegaBlocks not found, please see "
"https://github.com/stanford-futuredata/megablocks/. "
"Note that MegaBlocks depends on mosaicml-turbo, which only "
"supports python 3.10.")
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.")
try:
import stk
except ImportError:
Expand Down

0 comments on commit 6120e5a

Please sign in to comment.