Welcome to the installation guide for OSS Project B! Below you will find the steps required to get your project up and running.
系统要求
- 操作系统:Ubuntu 18.04 或 CentOS 7
- Python 版本:Python 3.6+
- 硬件要求:至少 2GB 内存
安装步骤
安装依赖
sudo apt-get update sudo apt-get install -y python3-pip python3-dev build-essential
或者
sudo yum install -y python36 python36-pip python36-dev gcc
克隆项目
git clone <本站链接>/en/community/oss_project_b.git cd oss_project_b
安装项目
pip3 install -r requirements.txt
运行项目
python3 app.py
项目默认运行在
http://localhost:8000/
。
额外资源
如果您需要更详细的信息,请访问我们的[官方文档](<本站链接>/en/docs/oss_project_b)。
Golden_Retriever