I am using zsh, and I have installed gcloud in order to interact with GCP via local terminal on my Mac. I am encountering this error “zsh: no matches found: apache-beam[gcp]”. However, when I run the command directly on the bash terminal on the GCP console, there was no such error. How do I deal? Thank you.
Error with installing apache-beam[gcp] on mac zsh terminal - “zsh: no matches found: apache-beam[gcp]”
Asked Answered
I found the answer. According to this reddit post reddit.com/r/googlecloud/comments/dve3ie/…, the user BBHoss, who said You're using zsh, so you need to put the package name in quotes.” pip install 'apache-beam[gcp]' actually works. –
Scaffold
You should turn this comment into an answer and accept it. –
Headstock
pip install "apache-beam[gcp]"
^ This solved the issue for me.
As Navaneeth Pk suggested, enclose your library name in double quotes, eg pip install "apache-beam[gcp]"
© 2022 - 2024 — McMap. All rights reserved.