美文网首页
搭建Edusoho遇到的问题

搭建Edusoho遇到的问题

作者: 写给我的公主的简书 | 来源:发表于2021-05-20 11:22 被阅读0次

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遇到的问题

      本文链接:https://www.haomeiwen.com/subject/lfvvjltx.html