diff options
author | Samruddhi Khandale <skhandale@microsoft.com> | 2022-09-08 23:31:57 +0300 |
---|---|---|
committer | Samruddhi Khandale <skhandale@microsoft.com> | 2022-09-08 23:31:57 +0300 |
commit | 7e974111f1efdaad54f7912cc002841c210f4315 (patch) | |
tree | f0752aca7c5e34426caf956bf644fd2c92815d80 /src/python | |
parent | dd737d12e1f28906243bf3900a8a2787508afa57 (diff) |
switch to python3
Diffstat (limited to 'src/python')
-rwxr-xr-x | src/python/install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/install.sh b/src/python/install.sh index 8cf7043..2693f7b 100755 --- a/src/python/install.sh +++ b/src/python/install.sh @@ -447,7 +447,7 @@ fi # Install JupyterLab if needed if [ "${INSTALL_JUPYTERLAB}" = "true" ]; then - if [[ $(python --version) != "" ]]; then + if [[ $(python3 --version) != "" ]]; then install_user_package jupyterlab # Configure JupyterLab if needed |