Ubuntu 中Gitbook 使用笔记

https://www.freesion.com/article/9659886013/

内容

  • 1.安装 nodejs 、 npm 、Gitbook
  • 2.使用Gitbook
  • 3.在浏览器浏览gitbook内容
  • 出现报错:TypeError [ERR_INVALID_ARG_TYPE]: The "data" argument must be of type string or an instance of Buffe

1.安装 nodejs 、 npm 、Gitbook

终端输入以下命令即可安装:

sudo apt-get install nodejs
sudo apt-get install npm

升级 nodejs 和 npm 版本:

sudo npm install n -g
sudo n stable
npm i -g npm

配置 npm 镜像源为淘宝源:

npm config set registry http://registry.npm.taobao.org/

安装Gitbook:
先安装 gitbook-cli,执行以下命令

sudo npm install -g gitbook-cli

查看版本并安装 gitbook,
输入命令gitbook -V会自动安装 gitbook:

gitbook -V

验证是否安装成功:
在这里插入图片描述

2.使用Gitbook

新建文档目录:

mkdir docs

初始化目录:

cd docs
gitbook init

3.在浏览器浏览gitbook内容

Ubuntu 中Gitbook 使用笔记_第1张图片

出现报错:TypeError [ERR_INVALID_ARG_TYPE]: The “data” argument must be of type string or an instance of Buffe

解决办法:更换nodejs的版本
安装node版本管理模块n :

sudo npm install n -g

版本降级或者升级(亲测12.16.3版本有效):

sudo 12.16.3

Ubuntu 中Gitbook 使用笔记_第2张图片
再次进行gitbook init
在这里插入图片描述
成功!

你可能感兴趣的:(Linux,ubuntu,gitbook)