Installing Rasa - No matches found

I run below command but got error

pip3 install rasa[full]

Error: zsh: no matches found: rasa[full] Which python version is required to run above command?

1 Like

Welcome to the forum!

As the documentation shows, you need Python 3.7 or 3.8.

Make sure of both you Pip and Python versions with the command pip3 -V.

Try pip3 install rasa (without [full]) first.

pip3 install rasa ---- works, btw, i found the issue. New macbook pro started using z sh as their default shell and it does not understand the syntax. So. correct synatx is pip3 install “rasa[full]”