乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
ubuntu安装chatgpt_clone环境 | chenzuoli's blog

ubuntu安装chatgpt_clone环境

进来看看吧。

  1. 安装node环境

    1
    2
    sudo apt install nodejs
    sudo apt install npm
  2. 安装node包

    1
    npm install
  3. 启动api

    1
    2
    3
    node index.js
    后台启动:
    nohup node index.js > /home/lighthouse/chenzuoliChatGPT_new-main/api/api.log 2>&1 &
  4. 问题

    1
    2
    ReferenceError: globalThis is not defined, i got a error with node index.js

    node 版本太低了

升级node
sudo npm install -g n
sudo n latest

重启当前session

  1. 启动客户端

    1
    2
    3
    4
    5
    cd client
    sudo npm install
    sudo npm start
    后台启动:
    sudo nohup npm start > /home/lighthouse/chenzuoliChatGPT_new-main/client/client.log 2>&1 &
  2. 生产部署

    1
    2
    3
    4
    sudo npm install -g serve
    sudo serve -s build
    后台启动:
    sudo nohup serve -s build > /home/lighthouse/chenzuoliChatGPT_new-main/client/client.log 2>&1 &
  3. 查看node进程

    1
    2
    ps -ef | grep node
    netstat -tpln
  4. chenzuoliGPT-api port 3080

  5. chenzuoliGPT-client port 3000


-------------本文结束感谢您的阅读-------------