Skip to content

Commit fe75b16

Browse files
larryliu0820malfet
authored andcommitted
Update install_utils.sh to use python3 instead of python (#636)
As titled. On some devices `python` and `python3` are pointing to different environments so good to unify them.
1 parent de0deb3 commit fe75b16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/install_utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ install_pip_dependencies() {
1616
}
1717

1818
function find_cmake_prefix_path() {
19-
path=`python -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())"`
19+
path=`python3 -c "from distutils.sysconfig import get_python_lib;print(get_python_lib())"`
2020
MY_CMAKE_PREFIX_PATH=$path
2121
}
2222

0 commit comments

Comments
 (0)