We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89eef97 commit 398ed3bCopy full SHA for 398ed3b
1 file changed
R/acro_init.R
@@ -33,7 +33,8 @@ install_conda <- function(envname) { # nocov
33
# Internal helper: install ACRO in a Python virtual environment
34
install_venv <- function(envname = acro_venv) {
35
if (!reticulate::virtualenv_exists(envname)) {
36
- python <- reticulate::virtualenv_starter() %||% get_python()
+ python <- reticulate::virtualenv_starter()
37
+ if (is.null(python)) python <- get_python()
38
39
reticulate::virtualenv_create(
40
envname = envname,
0 commit comments