soldni commited on
Commit
7a6cbac
1 Parent(s): 39b1e3d

Update README.md

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