# Label Studio Web 端 Conda 环境配置
# 使用方法:
#   conda env create -f environment-web.yaml
#   conda activate label-studio-web
#   python server.py

name: label-studio-web
channels:
  - pytorch
  - conda-forge
  - defaults
dependencies:
  - python=3.11
  - pip
  - pip:
    - fastapi>=0.100.0
    - uvicorn>=0.23.0
    - python-multipart>=0.0.6
    - opencv-python>=4.8.0
    - ultralytics>=8.2.0
    - numpy>=1.26.0
    - Pillow>=10.0.0
