lu-wang-g
lu-wang-g
Try if it works by configuring the Python bin path explicitly, such ``` PYTHON_BIN_PATH=$(which python3) export PYTHON_BIN_PATH ```
Then try if the following works for you: ``` PYTHON_BIN_PATH=$(which python3) export PYTHON_BIN_PATH sudo rm -f /usr/bin/python3 sudo ln -s "${PYTHON_BIN_PATH}" /usr/bin/python3 ```
Thanks Kinar! Also, we can hopefully simply the following test code: ``` classification_result = classifications_pb2.ClassificationResult() classification_result.ParseFromString(image_result.SerializeToString()) self.assertProtoEquals(classification_result, expected_result) ``` with ``` self.assertProtoEquals(image_result, expected_result) ``` Could you please make those changes...