【问题标题】:ENOENT, stat '-stylus' at Error (native)ENOENT,错误时的统计“-stylus”(本机)
【发布时间】:2014-12-26 05:01:55
【问题描述】:

我在使用手写笔时收到了这个奇怪的错误消息,首先我在我的 linux 机器上安装了 github 的 nodejs,然后我运行了这个命令 npm install -g stylus autoprefixer-stylus,我得到了这个错误日志/消息

npm ERR! Error: EACCES, unlink '/usr/local/lib/node_modules/autoprefixer-stylus'
npm ERR!     at Error (native)
npm ERR!  { [Error: EACCES, unlink '/usr/local/lib/node_modules/autoprefixer-stylus']
npm ERR!   stack: 'Error: EACCES, unlink \'/usr/local/lib/node_modules/autoprefixer-stylus\'\n    at Error (native)',
npm ERR!   errno: -13,
npm ERR!   code: 'EACCES',
npm ERR!   path: '/usr/local/lib/node_modules/autoprefixer-stylus' }
npm ERR! 
npm ERR! Please try running this command again as root/Administrator.

npm ERR! System Linux 3.13.0-24-generic
npm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install" "-g" "stylus" "autoprefixer-stylus"
npm ERR! cwd /home/avinashizhere
npm ERR! node -v v0.13.0-pre
npm ERR! npm -v 1.4.28
npm ERR! path /usr/local/lib/node_modules/autoprefixer-stylus
npm ERR! code EACCES
npm ERR! errno -13
npm ERR! stack Error: EACCES, unlink '/usr/local/lib/node_modules/autoprefixer-stylus'
npm ERR! stack     at Error (native)
npm ERR! error rolling back Error: EACCES, unlink '/usr/local/lib/node_modules/autoprefixer-stylus'
npm ERR! error rolling back     at Error (native)
npm ERR! error rolling back  { [Error: EACCES, unlink '/usr/local/lib/node_modules/autoprefixer-stylus']
npm ERR! error rolling back   stack: 'Error: EACCES, unlink \'/usr/local/lib/node_modules/autoprefixer-stylus\'\n    at Error (native)',
npm ERR! error rolling back   errno: -13,
npm ERR! error rolling back   code: 'EACCES',
npm ERR! error rolling back   path: '/usr/local/lib/node_modules/autoprefixer-stylus' }
npm ERR! not ok code 0

据了解,我必须使用 sudo 来运行它,我确实添加了 sudo 并得到了这个输出

/usr/local/bin/stylus -> /usr/local/lib/node_modules/stylus/bin/stylus
autoprefixer-stylus@0.4.0 /usr/local/lib/node_modules/autoprefixer-stylus
└── autoprefixer-core@4.0.2 (caniuse-db@1.0.30000037, postcss@3.0.7)

stylus@0.49.3 /usr/local/lib/node_modules/stylus
├── css-parse@1.7.0
├── mkdirp@0.3.5
├── sax@0.5.8
├── debug@2.1.0 (ms@0.6.2)
├── source-map@0.1.41 (amdefine@0.1.0)
└── glob@3.2.11 (inherits@2.0.1, minimatch@0.3.0)

现在我想我需要包/文件,现在我运行了这个命令stylus -u autoperfixer -stylus -w style.styl,我得到了这个

/usr/local/lib/node_modules/stylus/bin/stylus:625
    if (err) throw err;
                   ^
Error: ENOENT, stat '-stylus'
    at Error (native)

我不知道出了什么问题,还是我遗漏了什么?

【问题讨论】:

  • 这是autoprefixer-stylus,而不是autoperfixer -stylus

标签: javascript css node.js npm stylus


【解决方案1】:

你运行了一个错误的命令,在终端上运行安装stylus:

 sudo npm install -g stylus

那么如果你想安装 autoprefixer-stylus 运行:

 sudo npm install -g autoprefixer-stylus

【讨论】:

    【解决方案2】:

    现在我想我需要包/文件,现在我运行了这个命令stylus -u autoperfixer -stylus -w style.styl,我得到了这个

    autoprefixer-stylus,不是autoperfixer -stylus

    【讨论】:

    • stylus -u autoprefixer-stylus -w style.styl /usr/local/lib/node_modules/stylus/bin/stylus:625 if (err) throw err; ^ 错误:ENOENT, stat 'style.styl' at Error (native)
    • @avinashizhere:style.styl 不存在。你的 Stylus 样式表叫什么,它在哪里?
    猜你喜欢
    • 2016-07-20
    • 2014-10-28
    • 1970-01-01
    • 2017-05-28
    • 2011-09-17
    • 2021-01-09
    • 2018-03-20
    • 2014-08-26
    • 1970-01-01
    相关资源
    最近更新 更多