ubuntu安装gitbook常见的问题

ubuntu安装gitbook常见的问题

  • npm和node的版本过低
    • 更新npm

npm和node的版本过低

  • 在使用此命令安装gitbook时sudo npm install -g gitbook-cli,报如下错误:
/usr/local/lib/node_modules/npm/bin/npm-cli.js:84
     let notifier = require('update-notifier')({pkg})
SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
   at exports.runInThisContext (vm.js:53:16)
   at Module._compile (module.js:374:25)
   at Object.Module._extensions..js (module.js:417:10)
   at Module.load (module.js:344:32)
   at Function.Module._load (module.js:301:12)
   at Function.Module.runMain (module.js:442:10)
   at startup (node.js:136:18)
   at node.js:966:3

这是因为npm版本过低,需要更新,使用如下操作

sudo npm install -g npm

更新npm

/usr/bin/env: "node": 没有那个文件或目录
ubuntu在安装的时候为了避免包的冲突,将nodejs的命令操作改成nodejs,而不是node。
因此需要使用软连接进行添加,我的nodejs 命令所在路径为:/usr/share/nodejs/bin/node,使用which命令可以查看nodejs的位置(which nodejs) 因此软连接操作如下:
sudo ln -s /usr/share/nodejs/bin/node /usr/bin/node

你可能感兴趣的:(gitbook)