diff --git a/c/cachetools/cachetools_ubi_9.3.sh b/c/cachetools/cachetools_ubi_9.3.sh index 33b31a500b..a916739279 100644 --- a/c/cachetools/cachetools_ubi_9.3.sh +++ b/c/cachetools/cachetools_ubi_9.3.sh @@ -31,7 +31,7 @@ git clone $PACKAGE_URL $PACKAGE_NAME cd $PACKAGE_NAME git checkout $PACKAGE_VERSION -if ! python3 setup.py install ; then +if ! python3 -m pip install . ; then echo "------------------$PACKAGE_NAME:Install_fails-------------------------------------" echo "$PACKAGE_URL $PACKAGE_NAME" echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Fail | Install_Fails" @@ -48,4 +48,6 @@ else echo "$PACKAGE_URL $PACKAGE_NAME" echo "$PACKAGE_NAME | $PACKAGE_URL | $PACKAGE_VERSION | GitHub | Pass | Both_Install_and_Test_Success" exit 0 -fi \ No newline at end of file +fi + +