Skip to content

Commit

Permalink
Add env.
Browse files Browse the repository at this point in the history
  • Loading branch information
robinjhuang committed Jun 26, 2024
1 parent c92eb96 commit 8dcddc4
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/conda-environments/linux-environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: comfyui
channels:
- pytorch
- nvidia
- defaults
dependencies:
- python>=3.9 # Specify the version of Python you need
- pytorch
- torchvision
- torchaudio
- cudatoolkit=12.1
- pip:
# comfyui requirements
- einops
- transformers>=4.25.1
- safetensors>=0.4.2
- aiohttp
- pyyaml
- Pillow
- scipy
- tqdm
- psutil
# comfy-action requirements
- requests
- google-cloud-storage
- comfy-cli
- charset-normalizer
25 changes: 25 additions & 0 deletions .github/workflows/conda-environments/mac-environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: comfyui
channels:
- pytorch-nightly
- defaults
dependencies:
- python>=3.9
- pytorch-nightly::pytorch
- torchvision
- torchaudio
- pip:
# comfyui requirements
- einops
- transformers>=4.25.1
- safetensors>=0.4.2
- aiohttp
- pyyaml
- Pillow
- scipy
- tqdm
- psutil
# comfy-action requirements
- requests
- google-cloud-storage
- comfy-cli
- charset-normalizer
1 change: 1 addition & 0 deletions .github/workflows/test-workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,5 @@ jobs:
gcs_bucket_name: 'comfy-ci-results'
google_credentials: ${{ secrets.GCS_SERVICE_ACCOUNT_JSON }}
output_prefix: 'ComfyUI'
conda_env_file: 'conda-environments/linux-environment.yml'
timeout: 50

0 comments on commit 8dcddc4

Please sign in to comment.