主要记录下遇到的两个问题:
- cb.apply is not a function
该问题百度搜出来就是直接注释statFix函数。google搜索可以
npm install graceful-fs@latest --save
然后再
npm install gitbook-cli -g
我试了下这个,似乎也还不行。所以最终我还是注释掉statFix函数
- cb.apply is not a function
- Unexpected token 'u' at 1:1 uleon.fumika@gmail.com 问题
解决,降低nodejs版本,再注释cb.apply
- Unexpected token 'u' at 1:1 uleon.fumika@gmail.com 问题
ubuntu22.04上安装低版本nodejs
ubuntu22.04上直接用apt install nodejs安装的18版本的
sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates
curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
apt install nodejs #此时应该安装的是16
#如果要安装18
curl -sL https://deb.nodesource.com/setup_18.x | sudo -E bash -
apt install nodejs #此时应该安装的是18
然后再去注释掉cb.apply()
ubuntu上找npm安装的gitbook-cli所在位置
root@pc:~# npm root -g
/usr/lib/node_modules
网友评论