I am working on a project and trying to install Apache Beam from the terminal using this command: pip3 install apache-beam[gcp] however I get this error: zsh: no matches found: apache-beam[gcp]
I created a virtual env using these commands:
pip3 install virtualenv
python3 -m virtualenv env
source env/bin/activate
Needs quotes per eg https://cloud.google.com/dataflow/docs/guides/installing-beam-sdk#python
pip install 'apache-beam[gcp]'
or
pip3 install 'apache-beam[gcp]'