From 007bba6e61c470345e64fa223e336d3f80d14ba6 Mon Sep 17 00:00:00 2001 From: Tomasz Kalinowski Date: Tue, 1 Aug 2023 13:35:24 -0400 Subject: [PATCH] don't recommend `brew install python` --- R/virtualenv.R | 3 --- 1 file changed, 3 deletions(-) diff --git a/R/virtualenv.R b/R/virtualenv.R index aff23326a..8f7e76acc 100644 --- a/R/virtualenv.R +++ b/R/virtualenv.R @@ -706,9 +706,6 @@ stop_no_virtualenv_starter <- function(version = NULL) { w("- reticulate::install_python(version = '')") - if (is_macos() && nzchar(Sys.which("brew"))) - w('- system("brew install python@")') - stop(paste0(.msg, collapse = "\n")) }