Error with installing apache-beam[gcp] on mac zsh terminal - “zsh: no matches found: apache-beam[gcp]”
Asked Answered
S

2

11

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.

Scaffold answered 11/3, 2020 at 14:21 Comment(2)
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
V
36
pip install "apache-beam[gcp]"

^ This solved the issue for me.

Voroshilov answered 8/8, 2020 at 3:38 Comment(0)
A
0

As Navaneeth Pk suggested, enclose your library name in double quotes, eg pip install "apache-beam[gcp]"

Alunite answered 21/7, 2021 at 4:53 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.