smares commited on
Commit
ca6c5a9
·
verified ·
1 Parent(s): 59812b6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -2
README.md CHANGED
@@ -43,10 +43,20 @@ If you prefer conda:
43
 
44
  ```bash
45
  # example only - adjust paths to your cluster
46
- source /clusterfs/nilah/sergio/miniconda3/etc/profile.d/conda.sh
47
  conda create -y -n ESMCBA python=3.10
48
  conda activate ESMCBA
49
- pip install -U torch huggingface_hub hf_transfer
 
 
 
 
 
 
 
 
 
 
50
  ```
51
 
52
  ## 2. Get the code
 
43
 
44
  ```bash
45
  # example only - adjust paths to your cluster
46
+
47
  conda create -y -n ESMCBA python=3.10
48
  conda activate ESMCBA
49
+
50
+ # Core dependencies
51
+ pip install torch==2.6.0 transformers==4.46.3 esm==3.1.3 \
52
+ biopython==1.85 umap-learn==0.5.7 scikit-learn==1.6.1 \
53
+ seaborn==0.13.2 pandas==2.2.3 matplotlib==3.10.1
54
+
55
+ # For downloading model checkpoints from Hugging Face
56
+ pip install -U huggingface_hub
57
+
58
+ # Optional: speed up large file downloads
59
+ pip install -U hf_transfer
60
  ```
61
 
62
  ## 2. Get the code