是否可以在nuget包管理器控制台的帮助下安装angular-ui-tinymce?

时间:2016-07-05 12:45:55

标签: tinymce bower bower-install

在nuget包管理器控制台的帮助下安装angular-ui-tinymce时遇到了一个问题。 这是我得到的信息:

PM> $ bower install angular-ui-tinymce --save-dev
$ : The term '$' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:1
+ $ bower install angular-ui-tinymce --save-dev
+ ~
    + CategoryInfo          : ObjectNotFound: ($:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

所有帮助都很受欢迎

问候 阿提拉

1 个答案:

答案 0 :(得分:0)

Bower本身就是一个包管理器 - 你为什么要同时使用Bower和Nuget来安装包?假设您正确安装了Bower,您可以使用Bower安装angular-ui-tinymce

bower install angular-ui-tinymce --save-dev 

...不确定为什么要使用$为命令添加前缀,但其语法不正确,这就是上述错误告诉您的内容。

代码中的PM>提示符表明您在NuGet包管理器中 - 如果您想使用Bower获取包,则无需在此处。

查看有关Bower vs NuGet的这篇文章,因为它可能有助于澄清您的困惑......

http://simplyaprogrammer.com/2014/06/why-bower-is-better-than-nuget.html