From afe18d1cb3028c2e6684727ed89ae20585dde2b0 Mon Sep 17 00:00:00 2001 From: Anuj Khandelwal Date: Sat, 26 Jan 2019 12:17:54 +0530 Subject: [PATCH] Updated install_dependencies.sh This script was throwing error while installing cocoapi, the changes I made above solved this for my setup. --- tftrt/examples/object_detection/install_dependencies.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tftrt/examples/object_detection/install_dependencies.sh b/tftrt/examples/object_detection/install_dependencies.sh index 81ed5c983..8633f1939 100755 --- a/tftrt/examples/object_detection/install_dependencies.sh +++ b/tftrt/examples/object_detection/install_dependencies.sh @@ -66,5 +66,8 @@ popd echo Install cocodataset/cocoapi/PythonAPI... pushd $PYCOCO_DIR -pip install . +python setup.py build_ext --inplace +make +# pip install . +python setup.py install popd