Skip to content

Commit

Permalink
[Installation] Avoid ModuleNotFoundError:setuptools-scm error (#475)
Browse files Browse the repository at this point in the history
Current instructions for setup using standalone docker (not using
Dockerfile) is missing the `pip install -r requirements-hpu.txt`
instruction. A new user using this method for setup will encounter :
```
File "/root/vllm/setup.py", line 15, in <module>
    from setuptools_scm import get_version
ModuleNotFoundError: No module named 'setuptools_scm'
```
This PR fixes that.
  • Loading branch information
MohitIntel authored Nov 8, 2024
1 parent ac16ba1 commit e818cf3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/source/getting_started/gaudi-installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ To build and install vLLM from source, run:
$ git clone https://github.com/vllm-project/vllm.git
$ cd vllm
$ pip install -r requirements-hpu.txt
$ python setup.py develop
Expand All @@ -85,6 +86,7 @@ Currently, the latest features and performance optimizations are developed in Ga
$ git clone https://github.com/HabanaAI/vllm-fork.git
$ cd vllm-fork
$ git checkout habana_main
$ pip install -r requirements-hpu.txt
$ python setup.py develop
Expand Down

0 comments on commit e818cf3

Please sign in to comment.