-
Notifications
You must be signed in to change notification settings - Fork 920
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
[BUG] incompatible protobuf dep version when installing cudf #10990
Comments
Hi @pxLi -- is this installing into a fresh environment or an existing one? Perhaps you could try |
hi, I guess this does not help consistently. ref: #8570 (comment) |
Fixes: #10990 This PR pins the` protobuf` version to the latest and chooses narrower pinning because of the lower likelihood of breaking API changes between minor patch versions as opposed to major version changes. Authors: - GALI PREM SAGAR (https://github.com/galipremsagar) Approvers: - AJ Schmidt (https://github.com/ajschmidt8)
resolved in #10996 |
Describe the bug
To use conda install cudf=22.08/22.06 will introduce incompatible protobuf version as dependency,
which gave us protobuf==3.19.4
when we try
import cudf
, we will get,and this also happens to 22.06 intermittently, if we are lucky enough we could get protobuf>=3.20+, but not always
manual run
pip install --upgrade protobuf
to upgrade protobuf version (3.20+) could resolve this issue.Seems this is like one issue before #8570
Steps/Code to reproduce bug
Expected behavior
import cudf correctly
Environment overview (please complete the following information)
nvidia/cuda:11.2.2-runtime-centos7
The text was updated successfully, but these errors were encountered: