Issues installing Python New Google ADK Agent 2025

I know that it is super new, but maybe someone else had this problem.
During the tutorial I try to set up with the code provided
!pip install google-adk -q !pip install litellm -q
print("Installation complete.")
But my computer, Mac, keeps sending me this error...
ERROR: Could not find a version that satisfies the requirement install (from versions: none) ERROR: No matching distribution found for install ERROR: Could not find a version that satisfies the requirement install (from versions: none) ERROR: No matching distribution found for install zsh: number expected
Any ideas what could it be?
Answer
Are you sure are you running your commands / code in separate lines?
!pip install google-adk -q
!pip install litellm -q
print("Installation complete.")
The first line !pip install google-adk -q
will execute the pip install
command for the google-adk
package with the -q
(quiet) flag.
Once that installation is complete, the second line !pip install litellm -q
will execute the pip install
command for the litellm
package with the -q
flag.
Enjoyed this article?
Check out more content on our blog or follow us on social media.
Browse more articles