Merge pull request 'feat: add requirements file for python scripts' (#44) from HiiroSakaki/cozynet:main into main

Reviewed-on: #44
This commit is contained in:
PolarisPyra 2024-03-06 01:12:19 +00:00
commit 183f7a6ea9
3 changed files with 6 additions and 2 deletions

View File

@ -7,7 +7,7 @@
3. Install Python prerequisites:
```bash
pip install tqdm pillow
pip install -r requirements.txt
```
4. Run Python scripts in `CozyNet/pythonscripts`:

View File

@ -4,7 +4,7 @@
3. 安裝Python相依性
```bash
pip install tqdm pillow
pip install -r requirements.txt
```
4. 執行在`CozyNet/pythonscripts`中的Python script腳本

4
requirements.txt Normal file
View File

@ -0,0 +1,4 @@
tqdm
pillow
sqlalchemy
mysqlclient