From 3c79ff9e03c1f9ae91c603563a6eecf2d1f2c6d2 Mon Sep 17 00:00:00 2001 From: aasimrazajatoi <111963558+aasimrazajatoi@users.noreply.github.com> Date: Tue, 6 Sep 2022 00:38:37 +0500 Subject: [PATCH] changed command "python" to "python3" I got error in my ubuntu machine running mssql-cli command gives me error of python command not found whereas in my machine python3 was installed, and when I changed the script to python3, it ran successfully. --- mssql-cli | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mssql-cli b/mssql-cli index 77f992c9..b4dd990a 100755 --- a/mssql-cli +++ b/mssql-cli @@ -13,4 +13,4 @@ if [ -z ${PYTHONIOENCODING+x} ]; then export PYTHONIOENCODING=UTF-8; fi export PYTHONPATH="${DIR}:${PYTHONPATH}" -python -m mssqlcli.main "$@" +python3 -m mssqlcli.main "$@"