本文主要是介绍安装Ember出现错误的解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
执行>ember install, 出现下面的错误:version: 0.2.1
EPERM, unlink 'C:\Users\jeffrey\AppData\Local\Temp\jeffrey-E5530-jeffrey\bower\e
mber-cli-test-loader-16004-P1G8TI\archive.tar.gz'
Error: EPERM, unlink 'C:\Users\jeffrey\AppData\Local\Temp\jeffrey-E5530-jeffrey\
bower\ember-cli-test-loader-16004-P1G8TI\archive.tar.gz'at Error (native)
来自StackOverflow的解决方法:
http://stackoverflow.com/questions/25244512/bower-eperm-unlink-error
I got the same error "EPERM, unlink" but with a different archive.
Running these commands resolved the issue for me:
npm uninstall -g bower
npm update decompress-zip
npm install -g bower
This link is where I saw to use those commands: https://github.com/bower/bower/issues/798 It is the updating of the decompress-zip that has resolved the issue for others as well.
这篇关于安装Ember出现错误的解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!