ENOENT, stat '-stylus' at Error (native)

ENOENT, stat '-stylus' at Error (native)

本文关键字:native Error at ENOENT -stylus stat      更新时间:2023-09-26

我在使用手写笔时有这个奇怪的错误消息,首先我在 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)
我不知道出了什么

问题,还是我错过了什么?

您正在运行错误的命令,要在终端上运行手写笔:

 sudo npm install -g stylus

然后,如果要安装自动前缀手写笔,请运行:

 sudo npm install -g autoprefixer-stylus
现在

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

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