-
Notifications
You must be signed in to change notification settings - Fork 26
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
Define kfp as extra and update error messages #361
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.
Thanks!
src/fondant/compiler.py
Outdated
@@ -226,7 +226,7 @@ def _resolve_imports(self): | |||
self.kfp = kfp | |||
except ImportError: | |||
msg = """You need to install kfp to use the Kubeflow compiler,\n | |||
you can install it with `pip install --extras pipelines`""" | |||
you can install it with `pip install --extras kfp`""" |
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.
This is still the wrong message. Should be pip install fondant[kfp]
. Same below.
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.
fixed
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.
Thanks @GeorgesLorre!
No description provided.