I'm trying to run the Google Cloud ML engine locally for debugging purposes by running the command gcloud ml-engine local predict --model-dir=fasttext_cloud/ --json-instances=debug_instance.json
. However, I'm getting the error: ERROR: (gcloud.ml-engine.local.predict) Cannot import Tensorflow.
This is strange as Tensorflow works fine on my machine. Even a simple example like python -c 'import tensorflow'
has no issues whatsoever.
python -c 'import tensorflow'
so I would think that it's on the Python path. However, I can try to examine that more if you give me a bit of guidance how to do that? – Remonaremonetize