9 lines
133 B
Bash
9 lines
133 B
Bash
#!/bin/bash
|
|
|
|
# 激活conda环境
|
|
eval "$(conda shell.bash hook)"
|
|
conda activate imgsearcher
|
|
|
|
# 运行应用
|
|
poetry run python app.py
|