soldni commited on
Commit
32becce
1 Parent(s): 3a42dfc

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -42,7 +42,11 @@ This checkpoint is a **preview** of the Molmo release. All artifacts used in cre
42
  To run MolmoE, first install dependencies:
43
 
44
  ```bash
45
- pip install einops tensorflow torchvision
 
 
 
 
46
  ```
47
 
48
  Then, follow these steps:
 
42
  To run MolmoE, first install dependencies:
43
 
44
  ```bash
45
+ # uninstall all tensorflow packages
46
+ pip list --format=freeze | grep '^tensorflow' | cut -d= -f1 | xargs -n1 pip uninstall -y
47
+
48
+ # install CPU-only version of tensorflow; used for image preprocessing
49
+ pip install einops tensorflow-cpu torchvision
50
  ```
51
 
52
  Then, follow these steps: