我在使用手写笔时遇到这个奇怪的错误信息,首先我在我的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)
我不知道出了什么问题,或者有什么东西我不见了?
答案 0 :(得分:0)
您正在运行错误的命令,要在终端上安装手写笔:
sudo npm install -g stylus
然后,如果你想安装autoprefixer-stylus run:
sudo npm install -g autoprefixer-stylus
答案 1 :(得分:0)
现在我觉得我需要包裹/文件,现在我运行了这个命令
stylus -u autoperfixer -stylus
-w style.styl,我得到了这个
它是autoprefixer-stylus
,而不是autoperfixer -stylus
。