我正在遵循此页面上的说明: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发布于 2021-11-26 14:38:00
这是因为您在PowerShell中运行该命令。在那里你不能那么容易地使用@。
有两个选项:
在cmd
PowerShell中运行命令,将@命令括在引号中。像这样:npx "@nebula.js/cli" create mashup hello-saashttps://stackoverflow.com/questions/70124213
复制相似问题