forked from Ligo-Biosciences/AlphaFold3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
environment.yaml
59 lines (53 loc) · 1.32 KB
/
environment.yaml
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# reasons you might want to use `environment.yaml` instead of `requirements.txt`:
# - pip installs packages in a loop, without ensuring dependencies across all packages
# are fulfilled simultaneously, but conda achieves proper dependency control across
# all packages
# - conda allows for installing packages without requiring certain compilers or
# libraries to be available in the system, since it installs precompiled binaries
name: alphafold
channels:
- pytorch
- nvidia
- conda-forge
- bioconda
- adaptyvbio
- defaults
dependencies:
- python=3.9
- packaging>=23.2,<24.0
- absl-py
- pip
# --------- pytorch --------- #
- pytorch=2.4.0
- torchvision
- torchaudio
- pytorch-cuda=12.4 # for CUDA version 12.4
- lightning
# --------- kernels --------- #
- einops
# --------- loggers --------- #
- wandb
# ------- Cloud storage ------ #
- s3fs
- gcsfs
# --------- others --------- #
- pre-commit
- rich
- pytest
- pandas
- p-tqdm
- setuptools>=68.2.2,<68.3.0
- tqdm
- pandas
- pip:
- proteinflow==2.8.0
- biopython
- deepspeed==0.14.4
- dm-tree>=0.1.8,<0.2.0
- torchmetrics
# --------- hydra --------- #
- hydra-core==1.3.2
- hydra-optuna-sweeper
- hydra-colorlog
- rootutils>=1.0.7,<1.1.0
- ml_collections