1

On my laptop I'm running MacOS. I use ZSH as my shell. I'm new to Python world and to Memegraph. I'm just setting up my dev enviroment. When I try to install GQLAlchemy using PIP

pip install gqlalchemy[arrow] but it doesn't work for me. What am I missing?

1 Answers1

1

For zsh terminal, you need to pass literal square brackets as an argument to a command: pip install 'gqlalchemy[arrow]'

KateLatte
  • 611
  • 1
  • 12