Update README.md
Browse files
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 |
-
|
|
|
|
|
|
|
|
|
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:
|