vllm icon indicating copy to clipboard operation
vllm copied to clipboard

Cannot install neither with pip nor with poetry

Open dSupertramp opened this issue 1 year ago • 0 comments

Got this error with pip (pip install vllm):

error: subprocess-exited-with-error

× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

And this error with poetry (poetry add vllm):


  at ~/.local/lib/python3.10/site-packages/poetry/installation/chef.py:152 in _prepare
      148│ 
      149│                 error = ChefBuildError("\n\n".join(message_parts))
      150│ 
      151│             if error is not None:
    → 152│                 raise error from None
      153│ 
      154│             return path
      155│ 
      156│     def _prepare_sdist(self, archive: Path, destination: Path | None = None) -> Path:

Note: This error originates from the build backend, and is likely not a problem with poetry but with vllm (0.1.1) not supporting PEP 517 builds. You can verify this by running 'pip wheel --use-pep517 "vllm (==0.1.1)"'.

dSupertramp avatar Jun 28 '23 13:06 dSupertramp