-
|
I installed llm-benchmark successfully using pip3, but I don't know where it installed, and it's not in my path, so I can't run it. Can anyone tell me where it ends up? Related question – how can I tell it the path to models that I've downloaded using LMstudio so that I don't have to re-download them? |
Beta Was this translation helpful? Give feedback.
Answered by
chuangtc
Aug 21, 2025
Replies: 1 comment
-
|
I recommend you use venv module python3 -m venv .venv
source .venv/bin/activate
pip install llm-benchmarkAll the related exes are inside .venv separated from your system-wide python3 As for LMstudio, it's a separate thing. This tool only measures ollama throughput. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
chuangtc
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I recommend you use venv module
python3 -m venv .venv source .venv/bin/activate pip install llm-benchmarkAll the related exes are inside .venv separated from your system-wide python3
As for LMstudio, it's a separate thing. This tool only measures ollama throughput.