Can't execute this command "rasa run action & rasa shell"

I did this using Rasa open source.If I try to execute this command it generate some error like this. At line:1 char:17

  • rasa run action & rasa shell
  •             ~
    

The ampersand (&) character is not allowed. The & operator is reserved for future use; wrap an ampersand in double quotation marks ("&") to
pass it as part of a string. + CategoryInfo : ParserError: (:slight_smile: [], ParentContainsErrorRecordException + FullyQualifiedErrorId : AmpersandNotAllowed

In Windows Powershell, you are not allowed to use the ampersand (&) in any place other than the start of the line. You will have to run two separate Powershell windows, one each for rasa run actions and rasa shell.

1 Like