问题
linux系统下,执行命令
npm install -g yapi-cli --registry https://registry.npm.taobao.org
安装后,执行找不到命令
yapi server
yapi: command not found
解决
任意目录下执行
echo -e "export PATH=$(npm prefix -g)/bin:$PATH" >> ~/.bashrc && source ~/.bashrc
再次执行
就可以了。
yapi server