New RunLLM response generated: >>>*# Question* ma...
# runllm-flyte-trial
a
New RunLLM response generated: >>>*# Question* make compile on flyte repo giving this error. Can someone help, how to fix it? # Answer The error you're encountering is likely due to incompatible versions of
protobuf
and
grpcio
dependencies. This issue has been noted in several discussions and GitHub issues. To resolve this, you can pin the
grpcio
and
grpcio-status
versions to be less than
1.50.0
. Specifically, you can add the following lines to your
requirements.in
file:
Copy code
grpcio<=1.47.0
grpcio-status<=1.47.0
Then, run the
make compile
command again. Would you like more detailed steps or further assistance? Sources: - Flyte GitHub Issue #3006 - Flyte Discussion on Dependency Issues Slack Link https://flyte-org.slack.com/archives/CP2HDHKE1/p1723204324.026659 👍 0 button 👎 0 button 💡 Hint: Mention @runllm in the thread for followups.