I am trying to run a metaflow stage in the cloud o...
# ask-metaflow
e
I am trying to run a metaflow stage in the cloud on a specified image
FULL_IMAGE
. I get the following error:
Copy code
2023-02-08 11:58:43.479 [1301/run_subsystem_with_bag/9070 (pid 8798)] [26f877a1-b061-4801-9954-86bb440d2ead]   File "/metaflow/bag_evaluator.py", line 17, in evaluate_bag
2023-02-08 11:58:43.479 [1301/run_subsystem_with_bag/9070 (pid 8798)] [26f877a1-b061-4801-9954-86bb440d2ead]     import rosbag
2023-02-08 11:58:43.479 [1301/run_subsystem_with_bag/9070 (pid 8798)] [26f877a1-b061-4801-9954-86bb440d2ead] ModuleNotFoundError: No module named 'rosbag'
However, if I can
docker run
FULL_IMAGE
locally, run
python
and
import rosbag
no problem. Any idea why this would work locally and fail in the cloud?
1