搭建Edusoho遇到的问题

1、安装时提示权限问题
有可能是目录、文件不存在
2、linux安装nodejs

#从NodeSource安装Node.js和npm
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
#如果需要其他的Node.js版本,比如12.x,改变setup_14.x用setup_12.x。
sudo apt install nodejs
node -v
npm -v
#设置淘宝源
sudo npm config set registry https://registry.npm.taobao.org
#安装yarn
npm install -g yarn
#设置淘宝源
sudo yarn config set registry https://registry.npm.taobao.org
#打包编译
yarn
#以开发模式运行
npm run dev

你可能感兴趣的:(搭建Edusoho遇到的问题)