
# 安装 kp-abstract
```
tar kp-abstract-dev.tar.gz
yum install -y centos-release-scl
yum install -y rh-python38 which
scl enable rh-python38 bash
```
查看python位置
```
which python{,2,3}
```
超链接
# ll /opt/rh/rh-python38/root/usr/bin/python\*
图1超链接   
![](https://support.huaweicloud.com/tcrc-education/zh-cn_image_0000001809706665.png)
查看python版本
```
python -V
Python 3.8.0
```
进入项目文件夹
```
cd  kp-abstract
pip  install poetry
poetry install
poetry shell
nohup poetry run python -m uvicorn app.main:app --host 0.0.0.0 --port 8918 &
```
