# Install OBDYou can install OBD by using these methods:### Method 1: Install OBD by using RPM packages (only for CentOS 7 or later)```shellsudo yum install-y yum-utilssudo yum-config-manager --add-repo https://mirrors.aliyun.com/oceanbase/OceanBase.reposudo yum install-y ob-deploysource /etc/profile.d/obd.sh```### Method 2: Install OBD by using the source codeBefore you install OBD by using the source code, make sure that you have installed these dependencies:- gcc- wget- python-devel- openssl-devel- xz-devel- mysql-develTo install OBD on Python2.7, run these commands:```shellpip install-r requirements.txtsh build.shsource /etc/profile.d/obd.sh```To install OBD on Python3.8, run these commands:```shellpip install-r requirements3.txtsh build.shsource /etc/profile.d/obd.sh```