File size: 562 Bytes
74f0b48 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # Conda environment for Evoneural MVP
# Create: conda env create -f environment.yml
# Activate: conda activate evoneural-mvp
name: evoneural-mvp
channels:
- pytorch
- nvidia
- conda-forge
- defaults
dependencies:
- python=3.10
- pip
- pytorch
- torchvision
- pytorch-cuda=11.8 # or 12.1; comment out if CPU-only
- pip:
- streamlit>=1.28.0
- diffusers>=0.25.0
- transformers>=4.35.0
- accelerate>=0.25.0
- safetensors>=0.4.0
- huggingface-hub>=0.20.0
- rembg>=2.0.50
- Pillow>=10.0.0
|