apache-beamdata-pipeline

Error: "zsh: no matches found: apache-beam[gcp]" while installing Apache Beam


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 


Solution

  • 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]'