运行sudo npm i sharp --save
时出现以下错误:
> sharp@0.21.3 install /home/server/node_modules/sharp
> (node install/libvips && node install/dll-copy && prebuild-install) || (node-gyp rebuild && node install/dll-copy)
info sharp Using cached /home/ronny/.npm/_libvips/libvips-8.7.0-linux-x64.tar.gz
ERR! sharp EACCES: permission denied, mkdir '/home/server/node_modules/sharp/vendor'
info sharp Attempting to build from source via node-gyp but this may fail due to the above error
info sharp Please see https://sharp.pixelplumbing.com/page/install for required dependencies
gyp ERR! configure error
gyp ERR! stack Error: EACCES: permission denied, mkdir '/home/server/node_modules/sharp/build'
gyp ERR! System Linux 4.18.0-13-generic
gyp ERR! command "/usr/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
gyp ERR! cwd /home/server/node_modules/sharp
gyp ERR! node -v v8.11.4
gyp ERR! node-gyp -v v3.8.0
gyp ERR! not ok
npm WARN server@1.0.0 No description
npm WARN server@1.0.0 No repository field.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! sharp@0.21.3 install: `(node install/libvips && node install/dll-copy && prebuild-install) || (node-gyp rebuild && node install/dll-copy)`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the sharp@0.21.3 install 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! /home/ronny/.npm/_logs/2019-01-28T20_33_46_476Z-debug.log
我在另一台计算机上运行了相同的项目,并且安装正常进行。但是在另一台计算机(都运行Linux Ubuntu)上,我遇到了上述错误。
我找不到此错误的任何解决方案。这就是为什么我在这里寻求帮助。
答案 0 :(得分:4)
这对我有用。
npm install --unsafe-perm
请参考以下讨论 https://github.com/lovell/sharp/issues/1627#issuecomment-477109851
答案 1 :(得分:3)
Node v13.14.0+的问题,问题会解决
npm install sharp@0.23.2
如果您使用的是Sharp 0.22.1,您应该将Node 版本降级到>=10.0.0
答案 2 :(得分:2)
删除 package-lock.json 和 node_modules
,然后尝试安装软件包npm install
为我工作。
答案 3 :(得分:2)
最简单的方法是:
brew uninstall vips
然后:
npm install
答案 4 :(得分:1)
对于 Apple M1 brew install vips
然后 npm install --unsafe-perm
如果它没有解决您的问题,请在此similar issue
中找到更多信息 <块引用>答案 5 :(得分:1)
我的 Apple M1 遇到了同样的问题,我运行了下一个命令:
brew install vips
npm install --unsafe-perm
它有效
答案 6 :(得分:0)
我已通过降级node version to 10.0.0
解决了该错误。真的有效!
答案 7 :(得分:0)
在Windows上运行npx create-strapi-app my-project --quickstart并遇到相同的错误,必须从Visual Studio安装C ++进行桌面开发,并且可以正常工作。
答案 8 :(得分:0)
因此,错误首先显示“权限被拒绝”。
使用
安装
sudo
当您在sharp documentation中使用sudo
时!它说你必须使用
npm install --unsafe-perm
我建议:
/home/ronny/.npm/_libvips/libvips-8.7.0-linux-x64.tar.gz
(使用您的错误代码)libvips-8.7.0-linux-x64.tar.gz
npm install --unsafe-perm
(这将安装删除的库)npm install sharp
那我想我应该可以工作。这些步骤解决了我的问题,我遇到了同样的问题。 希望能帮助到你。谢谢。