You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ee_install not works in Windows because in utils::compareVersion(py_version, "3.5") is returns error
Error in strsplit(a, "[.-]") : non-character argument
due to line with py_version <- py_discover_config()[["version"]] returning not a character but a class "package_version" "numeric_version" this should be fixed by simply changing to
utils::compareVersion(as.character(py_version), "3.5")