Build the gpt project in the local environment

Look at the effect first:
http://gpt.maxcode.top/

Build the AI-gpt project in the local environment

insert image description here

1 Introduction

Ignore can not write

2. Prepare the environment

Introduction and installation of Docker

Docker is an open source containerization platform that helps developers and operators easily build, package and deploy applications. With Docker, you can package an application and all its dependencies into a self-contained unit called a container, allowing it to run quickly and reliably in different environments.

In order to start using Docker, you first need to install the Docker engine. Here are the steps to install Docker:

1. Open a terminal or command prompt and execute the following command to update the package manager:

For Ubuntu or Debian systems:

sudo apt update

For CentOS or Fedora systems:

sudo yum update

2. The prerequisite for installing Docker is that the system requires a 64-bit architecture and the kernel version is above 3.10. Execute the following command to install Docker:

For Ubuntu or Debian systems:

sudo apt install docker.io

For CentOS or Fedora systems:

sudo yum install doc

Guess you like

Origin blog.csdn.net/u012743772/article/details/131087263