【问题标题】:Ionic start give me an error in MacOS Mojave离子启动在 MacOS Mojave 中给我一个错误
【发布时间】:2019-07-26 17:40:47
【问题描述】:

操作系统:MacOS Mojave 10.14.2

离子:4.10.3 节点:10.15.2 npm:6.4.1

当我尝试创建一个新项目时,离子或 npm 失败:

下达命令时:

sudo ionic start testApp blank --type=ionic-angular

> node-sass@4.11.0 postinstall /Users/international/Public/testApp/node_modules/node-sass

> node scripts/build.js



Building: /usr/local/bin/node /Users/international/Public/testApp/node_modules/node-gyp/bin/node-gyp.js rebuild --verbose --libsass_ext= --libsass_cflags= --libsass_ldflags= --libsass_library=

gyp info it worked if it ends with ok

gyp verb cli [ '/usr/local/bin/node',

gyp verb cli   '/Users/international/Public/testApp/node_modules/node-gyp/bin/node-gyp.js',

gyp verb cli   'rebuild',

gyp verb cli   '--verbose',

gyp verb cli   '--libsass_ext=',

gyp verb cli   '--libsass_cflags=',

gyp verb cli   '--libsass_ldflags=',

gyp verb cli   '--libsass_library=' ]

gyp info using node-gyp@3.8.0

gyp info using node@10.15.2 | darwin | x64

gyp verb command rebuild []

gyp verb command clean []

gyp verb clean removing "build" directory

gyp verb command configure []

gyp verb check python checking for Python executable "/usr/bin/python2.7" in the PATH

gyp verb `which` succeeded /usr/bin/python2.7 /usr/bin/python2.7

gyp verb check python version `/usr/bin/python2.7 -c "import sys; print "2.7.10

gyp verb check python version .%s.%s" % sys.version_info[:3];"` returned: %j

gyp verb get node dir no --target version specified, falling back to host node version: 10.15.2

gyp verb command install [ '10.15.2' ]

gyp verb install input version string "10.15.2"

gyp verb install installing version: 10.15.2

gyp verb install --ensure was passed, so won't reinstall if already installed

gyp verb install version is already installed, need to check "installVersion"

gyp verb got "installVersion" 9

gyp verb needs "installVersion" 9

gyp verb install version is good

gyp verb get node dir target node version installed: 10.15.2

gyp verb build dir attempting to create "build" dir: /Users/international/Public/testApp/node_modules/node-sass/build

gyp ERR! configure error 

gyp ERR! stack Error: EACCES: permission denied, mkdir '/Users/international/Public/testApp/node_modules/node-sass/build'

gyp ERR! System Darwin 18.2.0

gyp ERR! command "/usr/local/bin/node" "/Users/international/Public/testApp/node_modules/node-gyp/bin/node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="

gyp ERR! cwd /Users/international/Public/testApp/node_modules/node-sass

gyp ERR! node -v v10.15.2

gyp ERR! node-gyp -v v3.8.0

gyp ERR! not ok 

Build failed with error code: 1

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.7 (node_modules/fsevents):

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.7 install: `node install`

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: Exit status 1



npm ERR! code ELIFECYCLE

npm ERR! errno 1

npm ERR! node-sass@4.11.0 postinstall: `node scripts/build.js`

npm ERR! Exit status 1

npm ERR! 

npm ERR! Failed at the node-sass@4.11.0 postinstall script.

npm ERR! This is probably not a problem with npm. There is likely additional logging output above.



npm ERR! A complete log of this run can be found in:

npm ERR!     /Users/international/.npm/_logs/2019-03-05T09_26_51_725Z-debug.log

[ERROR] An error occurred while running subprocess npm.



        npm i exited with exit code 1.

您会在某处发现“权限被拒绝”作为错误,但在我的命令中我使用 sudo 作为前缀。

我不知道发生了什么,我尝试了好几个小时才找到解决方案。我也是 MacOS 的新用户

【问题讨论】:

    标签: node.js macos ionic-framework


    【解决方案1】:

    您需要更改node_modules 文件夹的所有权。

    要更改文件夹的权限,请在终端中执行以下操作:

    sudo chown -R root:YOUR_USERNAME /Users/international/Public/testApp/node_modules/
    
    sudo chmod -R 775 /Users/international/Public/testApp/node_modules/
    

    如果这不起作用,您可以递归地为您的文件夹设置权限,如下所示:

    sudo chmod 777 -R /Users/international/Public/testApp/
    

    【讨论】:

      猜你喜欢
      • 2019-09-21
      • 1970-01-01
      • 2019-07-11
      • 1970-01-01
      • 2019-03-25
      • 2017-08-11
      • 2019-04-01
      • 2016-02-17
      • 2019-05-17
      相关资源
      最近更新 更多