-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bugfix] Fix a bug caused by pip install setuptools>=49.4.0 for CPU backend #5249
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch and thank you for your contribution!
Thanks @mgoin for your review. There are 5 failing checks of the CI tests which seem to be unrelated to my change. Thanks. |
@DamonFool Just force-merged. Thanks for the PR! |
Thanks @WoosukKwon . |
Hi all,
When I use
![WeChatWorkScreenshot_3492a09e-b8e8-4e32-a5f8-0e27f922e51c](https://private-user-images.githubusercontent.com/19923746/336449490-654f7e1e-d225-4d83-95ee-0ffeeea435cb.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk0OTAzMzEsIm5iZiI6MTczOTQ5MDAzMSwicGF0aCI6Ii8xOTkyMzc0Ni8zMzY0NDk0OTAtNjU0ZjdlMWUtZDIyNS00ZDgzLTk1ZWUtMGZmZWVlYTQzNWNiLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTMlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjEzVDIzNDAzMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPWY4MGQ4YzZmNzgyYTI3ZDdjYmI0MjYyZWRhNjRmNWNhNjczMWQyYmU4MDMzZWJhY2M4ZTA4NzMyODIzZGU5NTAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.RPn2uKZ94h-JTqGyShYoz-hxHqyN9A8syQDXeJ-D9Zg)
docker build -f Dockerfile.cpu -t vllm-cpu-env --shm-size=4g .
to build a cpu docker, I find a file named=49.4.0
in the CPU docker instance. Please see the following picture for this bug.It is caused by
in the Dockerfile.cpu
Actually,
pip install setuptools>=49.4.0
is incorrect to install the expected setuptools, which can be fixed byIt would be better to fix it.
Thanks.
Best regards,
Jie