- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Angular 的新手并接手了另一个开发人员开始的项目。我已经安装了 Angular 并执行了 npm install 但我一直收到“@anuglar/compiler-cli”包未正确安装。到目前为止,这是我尝试过的:
终端错误:
Error: The "@angular/compiler-cli" package was not properly installed.
at Object.<anonymous> (/Users/Jack/Documents/Github/t-dashboard/node_modules/@ngtools/webpack/src/index.js:14:11)
at Module._compile (module.js:573:32)
at Object.Module._extensions..js (module.js:582:10)
at Module.load (module.js:490:32)
at tryModuleLoad (module.js:449:12)
at Function.Module._load (module.js:441:3)
at Module.require (module.js:500:17)
at require (internal/module.js:20:19)
at Object.<anonymous> (/Users/Jack/Documents/Github/t-dashboard/node_modules/@angular/cli/tasks/eject.js:10:19)
at Module._compile (module.js:573:32)
at Object.Module._extensions..js (module.js:582:10)
at Module.load (module.js:490:32)
at tryModuleLoad (module.js:449:12)
at Function.Module._load (module.js:441:3)
at Module.require (module.js:500:17)
at require (internal/module.js:20:19)
包.json
{
"name": "genesis-ui",
"version": "1.5.11",
"description": "Bootstrap 4 Admin Template",
"author": "",
"url": "https://genesisui.com",
"copyright": "Copyright 2016 creativeLabs Łukasz Holeczek",
"license": "MIT",
"angular-cli": {},
"scripts": {
"start": "ng serve",
"lint": "tslint \"src/**/*.ts\"",
"test": "ng test",
"pree2e": "webdriver-manager update",
"e2e": "protractor"
},
"private": true,
"dependencies": {
"@angular/common": "2.2.3",
"@angular/compiler": "2.2.3",
"@angular/core": "2.2.3",
"@angular/forms": "2.2.3",
"@angular/http": "2.2.3",
"@angular/platform-browser": "2.2.3",
"@angular/platform-browser-dynamic": "2.2.3",
"@angular/router": "3.2.3",
"@angular/upgrade": "2.2.3",
"@types/lodash": "4.14.40",
"angular-calendar": "0.4.0",
"angular2-datatable": "0.5.2",
"angular2-ladda": "^1.0.6",
"angular2-moment": "^1.1.0",
"angular2-toaster": "1.0.2",
"chart.js": "^2.3.0",
"core-js": "^2.4.0",
"date-fns": "1.10.0",
"moment": "^2.17.0",
"ng2-bootstrap": "^1.1.16",
"ng2-charts": "^1.4.4",
"ng2-select": "^1.1.2",
"ng2-timeago": "^1.0.6",
"rxjs": "5.0.0-rc.4",
"ts-helpers": "^1.1.2",
"zone.js": "0.7.2"
},
"devDependencies": {
"@types/jasmine": "^2.5.37",
"codelyzer": "1.0.0-beta.4",
"jasmine-core": "^2.5.2",
"jasmine-spec-reporter": "2.7.0",
"karma": "1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-jasmine": "^1.0.2",
"karma-remap-istanbul": "^0.2.1",
"protractor": "4.0.11",
"ts-node": "1.7.0",
"tslint": "4.0.2",
"typescript": "2.3.4"
}
}
更新 1
感谢您的回复,但仍然遇到同样的问题。这是我使用的命令:
npm i -S @angular/compiler-cli
-> 添加了 "dependencies":{.., "@angular/compiler-cli": "^4.2.3",...
在 package.json 中npm i -D @angular/cli
-> 添加了 "devDependencies":{..., "@angular/cli": "^1.1.2",.. .
npm i -S @angular/compiler-cli
-> 添加了 "devDependencies":{..., "@angular/compiler-cli": "^1.1.2",. ..}
然后 npm 安装。更新 2
在 npm install
上,我在执行过程中看到了一些警告。关于警告的全部内容的任何想法?npm WARN @angular/compiler-cli@4.2.3 需要 @angular/compiler@4.2.3 的对等体,但没有安装。
npm WARN @angular/compiler-cli@4.2.3 需要 @angular/core@4.2.3 的对等体,但没有安装。
npm WARN @angular/core@2.2.3 需要 rxjs@5.0.0-beta.12 的对等体,但没有安装。
npm WARN @angular/core@2.2.3 需要 zone.js@^0.6.21 的对等体,但没有安装。
npm WARN @angular/http@2.2.3 需要 rxjs@5.0.0-beta.12 的对等体,但没有安装。
npm WARN @angular/router@3.2.3 需要 rxjs@5.0.0-beta.12 的对等体,但没有安装。
npm WARN @ng-bootstrap/ng-bootstrap@1.0.0-alpha.26 需要 @angular/core@^4.0.3 的对等体,但没有安装。
npm WARN @ng-bootstrap/ng-bootstrap@1.0.0-alpha.26 需要 @angular/common@^4.0.3 的对等体,但没有安装。
npm WARN @ng-bootstrap/ng-bootstrap@1.0.0-alpha.26 需要 @angular/forms@^4.0.3 的对等体,但没有安装。
npm WARN angular2-ladda@1.2.1 需要 @angular/core@^4.0.0 的对等体,但没有安装。
npm WARN angular2-toaster@1.0.2 需要 rxjs@5.0.0-beta.12 的对等体,但没有安装。
npm WARN codelyzer@1.0.0-beta.4 需要 tslint@^3.9.0 的对等体,但没有安装。
npm WARN ng2-bootstrap@1.6.3 需要 @angular/common@^2.3.1 的对等体 || >=4.0.0 但没有安装。
npm WARN ng2-bootstrap@1.6.3 需要 @angular/compiler@^2.3.1 的对等体 || >=4.0.0 但没有安装。
npm WARN ng2-bootstrap@1.6.3 需要 @angular/core@^2.3.1 的对等体 || >=4.0.0 但没有安装。
npm WARN ng2-bootstrap@1.6.3 需要 @angular/forms@^2.3.1 的对等体 || >=4.0.0 但没有安装。
npm WARN ng2-charts@1.6.0 需要 @angular/common@^2.3.0 的对等体 || >=4.0.0 但没有安装。
npm WARN ng2-charts@1.6.0 需要 @angular/core@^2.3.0 的对等体 || >=4.0.0 但没有安装。
npm WARN ng2-select@1.2.0 需要 @angular/common@^2.3.0 的对等体,但没有安装。
npm WARN ng2-select@1.2.0 需要 @angular/core@^2.3.0 的对等体,但没有安装。
还是一样的错误。还有其他建议吗?提前致谢。
最佳答案
您缺少编译器 cli 包,只需重新安装即可
npm i -S @angular/compiler-cli
您的 package.json
似乎也缺少开发依赖项中的 angular cli,所以这样做
npm i -D @angular/cli
关于javascript - 错误 : "@anuglar/compiler-cli" package was not properly installed,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44642036/
我正在尝试使用 JAXB 从 XSD 生成 java 类。 XSD 是我公司的官方 xsd,因此我无法仅为我的项目修改它们。在该网站上进行了数百次尝试和搜索后,我决定直接提出问题。 我的 XSD 中有
我已经了解了以下链接中的详细信息,但仍然存在何时使用哪个文件的问题?https://docs.npmjs.com/files/package-lock.json 最佳答案 包.json 包含项目的相关
当我在 centos 上运行命令 rpmbuild -bb mypackage.spec 时,出现错误 error: Package already exists: %package debuginf
my.packages 是 src 目录中的自定义原型(prototype)包。 Plone 实例中的数千个项目与其类型一起添加。我想将包重命名为 my.package。通过简单地卸载 my.pack
根据 javadoc 规范,我在相关包的根目录中放置了一个名为 package-info.html 的文档文件。但是,当我在该文件夹上运行 Doxygen 时,不会拾取该文件中的文档。我如何告诉 Do
我已经定义了如下的包: (defpackage :thehilariouspackageofamirteymuri (:nicknames ampack amir teymuri) (:use
我正在思考这个问题: > .packages() > (.packages()) [1] "stats" "graphics" "grDevices" "utils" "datase
我在内存中有一个 System.IO.Packaging.Package(它是一个 WordprocessingDocument)并且想将它流式传输到浏览器以保存它。 Word 文档已被基于 MVC
即使这是我不常发现的东西,在成员之前注释/* package*/的原因是什么? /* package */ final void attach(Context context) { atta
我正在开发我的应用程序,但在添加包以便导入它时,我总是收到此错误。 error: type 'Package.Dependency' has no member 'Package' 这是我的 Pack
install.packages("data.table") trying URL 'https://cran.rstudio.com/bin/macosx/el-capitan/contrib/3.
放置手动创建的插件的最佳位置是什么: a) C:\Users\{UserName}\AppData\Roaming\Sublime Text 3\Packages 或 b) C:\Users\{Use
这是一个有趣的 Perl 行为。 (至少对我来说 :) ) 我有两个包 PACKAGE1 和 PACKAGE2,它们导出具有相同名称的函数 Method1()。 由于将有如此多的包将导出相同的功能,使
package-archives (("marmalade" . "http://marmalade-repo.org/packages/") ("gnu" . "http://elpa.gnu.or
任何人都可以让我知道 package-lock.json 文件的确切用途吗? 尽管许多人提到它用于查看版本化依赖树。 寻找简单易行的解释。 提前致谢。 最佳答案 npm install使用此文件来确保
Python documentation说 Consider this code: import sound.effects.echo import sound.effects.surround fr
我在 ubuntu 上运行 VPS: Distributor ID: Ubuntu Description: Ubuntu 14.04.5 LTS Release: 14.04 C
我有这样一个结构 $ tree -h . ├── [1.0K] myproj │ ├── [ 0] index.py │ ├── [ 0] __init__.py │ └──
我正在尝试解压 System.IO.Packaging.Package我从网络服务器收到的。也就是说,我正在使用 System.IO.Packaging.Package.Open(Stream)方法并
关于 package.json 文件中的@types 依赖项,我有一个愚蠢的问题: 在下面的 URL 中解释了应该安装的类型作为运行时依赖 npm install --save @types/loda
我是一名优秀的程序员,十分优秀!