Niksa Praljak commited on
Commit
5a736ca
1 Parent(s): 9599488

Add conda env installation details

Browse files
Files changed (1) hide show
  1. README.md +8 -5
README.md CHANGED
@@ -19,18 +19,21 @@ doi: https://doi.org/10.1101/2024.11.11.622734
19
  ## Software Requirements
20
 
21
  ### Required Dependencies
22
- - Python 3.8 or later
23
  - PyTorch (latest stable version)
24
- - PyTorch Lightning
 
25
  - pandas
26
- - pyyaml
27
 
28
  ### Installation
29
 
30
  Create and activate a conda environment:
31
  ```bash
32
- conda create -n BioM3_env python=3.8
33
- conda activate BioM3_env
 
 
 
34
  ```
35
 
36
  Install the required packages:
 
19
  ## Software Requirements
20
 
21
  ### Required Dependencies
22
+ - Python 3.8 or later (recommend Python 3.10 to package conflicts)
23
  - PyTorch (latest stable version)
24
+ - Huggingface
25
+ - fair-esm
26
  - pandas
 
27
 
28
  ### Installation
29
 
30
  Create and activate a conda environment:
31
  ```bash
32
+ conda create -p /env_path/BioM3_env python=3.10 # /env_path/ is the location that contains the conda env
33
+ conda activate /env_path/BioM3_env
34
+ cd /path/BioM3 # /path/ is the location that contains the huggingface repo for BioM3
35
+ sh torch_requirements.sh # install torch software
36
+ pip install -r requirements.txt # install remaining packages
37
  ```
38
 
39
  Install the required packages: