From ee5eb39762210f1d5393b1a6be22ad282e655c54 Mon Sep 17 00:00:00 2001 From: YuviPanda Date: Thu, 2 Nov 2023 15:15:20 +0530 Subject: [PATCH] Don't tell reticulate to explicitly not use environment --- scripts/install_python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install_python.sh b/scripts/install_python.sh index cb2f246e..1bd591f4 100755 --- a/scripts/install_python.sh +++ b/scripts/install_python.sh @@ -59,6 +59,6 @@ fi # Check Python version echo -e "Check the Python to use with reticulate...\n" -R -q -e 'reticulate::py_discover_config(required_module = NULL, use_environment = NULL)' +R -q -e 'reticulate::py_discover_config(required_module = NULL)' echo -e "\nInstall Python, done!"