-
Notifications
You must be signed in to change notification settings - Fork 246
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
Limit the protobuf version - tensorflow requirement #1199
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.
Is this change working on pip install nncf[tf]
?
Thanks for the comment! Most probably it should. Note: currenlty, the error does not reproduce with |
Maybe we can test by
|
Thanks for the suggestion. I tested. It works. |
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.
LGTM.
Changes
When installing NNCF with TF the following error pop up
error: protobuf 4.21.1 is installed but protobuf<3.20,>=3.9.2 is required by {'tensorboard'}
Steps to reproduce:
Temporary patch proposed (upper limit of protobuf version). Not sure if adding this additional explicit requirement is safe.
Reason for changes
Protobuf releases new version, which is getting installed by TensorFlow but not supported by TensorBoard. For reference please see tensorflow/tensorflow#56077.
Update is needed be able to install NNCF with TF.
Related tickets
[CVS-86310]
Tests