lhallee commited on
Commit
d317c25
·
verified ·
1 Parent(s): b86444b

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +13 -3
README.md CHANGED
@@ -237,7 +237,12 @@ Difference is statistically significant (p < 0.05)
237
  cd <repository-name>
238
  ```
239
 
240
- 2. **Set up the Python virtual environment:**
 
 
 
 
 
241
  The `setup_bioenv.sh` script creates a virtual environment named `bioenv` in your home directory (`~/bioenv`), installs PyTorch with CUDA 12.6 support, and then installs all other dependencies from `requirements.txt`.
242
 
243
  Make the script executable:
@@ -249,13 +254,18 @@ Difference is statistically significant (p < 0.05)
249
  ./setup_bioenv.sh
250
  ```
251
 
252
- 3. **Activate the environment:**
 
 
 
 
 
253
  Each time you want to work on this project, activate the virtual environment:
254
  ```bash
255
  source ~/bioenv/bin/activate
256
  ```
257
 
258
- 4. **To deactivate the environment:**
259
  ```bash
260
  deactivate
261
  ```
 
237
  cd <repository-name>
238
  ```
239
 
240
+ 2. **Initialize the submodules:**
241
+ ```bash
242
+ git submodule update --init --remote --recursive
243
+ ```
244
+
245
+ 3. **Set up the Python virtual environment:**
246
  The `setup_bioenv.sh` script creates a virtual environment named `bioenv` in your home directory (`~/bioenv`), installs PyTorch with CUDA 12.6 support, and then installs all other dependencies from `requirements.txt`.
247
 
248
  Make the script executable:
 
254
  ./setup_bioenv.sh
255
  ```
256
 
257
+ If you are not on a linux machine, you can install the requirements directly
258
+ ```console
259
+ python -m pip install -r requirements.txt
260
+ ```
261
+
262
+ 4. **Activate the environment:**
263
  Each time you want to work on this project, activate the virtual environment:
264
  ```bash
265
  source ~/bioenv/bin/activate
266
  ```
267
 
268
+ 5. **To deactivate the environment:**
269
  ```bash
270
  deactivate
271
  ```