mirror of
https://github.com/aimingmed/aimingmed-ai.git
synced 2026-01-19 13:23:23 +08:00
25 lines
589 B
Markdown
25 lines
589 B
Markdown
# Introduction
|
|
|
|
This repository is used as a prototype template for setting up new Python project.
|
|
|
|
The documentation in `docs` contains the recommended practices.
|
|
|
|
# Installation
|
|
|
|
## Requirements
|
|
|
|
- Install [pyenv](https://github.com/pyenv/pyenv#installation) to manage the Python versions
|
|
- Install [Poetry](https://python-poetry.org/docs/#installation) to manage the dependencies
|
|
|
|
Run the following command in this project root folder to install the dependencies:
|
|
|
|
```bash
|
|
poetry install
|
|
```
|
|
|
|
Or you can install the dependencies with `pip`:
|
|
|
|
```bash
|
|
pip install -r requirements.txt
|
|
```
|