我按照本页上的说明进行操作:https://qlik.dev/tutorials/build-a-chatbot-using-the-qlik-sense-natural-language-api
我实际上得到了一个错误,上面写着:
At line:1 char:5
npx @nebula.js/cli create mashup hello-saas
+ ~~~~~~~
The splatting operator '@' cannot be used to reference variables in an expression. '@nebula' can be used only as an argument to a command. To reference variables in an expression use '$nebula'.
+ CategoryInfo : ParserError: (:) [], ParentContainsErrorRecordException
+ FullyQualifiedErrorId : SplattingNotPermitted
这是因为您在PowerShell
中运行命令。在那里你不能这么容易地使用@
。
两种选择:
- 在
cmd
中运行命令 - 或者,在
PowerShell
中,用引号将@
命令括起来。像这样:npx "@nebula.js/cli" create mashup hello-saas