1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315
|
#' Python configuration
#'
#' Retrieve information about the version of Python currently being used by
#' `reticulate`.
#'
#' If Python has not yet been initialized, then calling `py_config()` will force
#' the initialization of Python. See [py_discover_config()] for more details.
#'
#' @return Information about the version of Python in use, as an \R list with
#' class `"py_config"`.
#'
#' @export
py_config <- function() {
ensure_python_initialized()
.globals$py_config
}
#' Python version
#'
#' Get the version of Python currently being used by `reticulate`.
#'
#' @param patch boolean, whether to include the patch level in the returned version.
#'
#' @return The version of Python currently used, or `NULL` if Python has
#' not yet been initialized by `reticulate`.
#'
#' @export
py_version <- function(patch = FALSE) {
if (!py_available(initialize = FALSE))
return(NULL)
if (patch) {
sys <- import("sys")
minor_major_patch <- sys$version_info[NA:3]
version <- paste0(unlist(minor_major_patch), collapse = ".")
return(numeric_version(version))
}
config <- py_config()
numeric_version(config$version)
}
#' Python executable
#'
#' Get the path to the Python executable that `reticulate` has been configured
#' to use. If Python has already been initialized, then `reticulate` will
#' choose the currently-active copy of Python.
#'
#' This can occasionally be useful if you'd like to interact with Python (or its
#' modules) via a subprocess; for example you might choose to install a package
#' with `pip`:
#'
#' ```
#' system2(py_exe(), c("-m", "pip", "install", "numpy"))
#' ```
#'
#' and so you can also have greater control over how these modules are invoked.
#'
#' @return The path to the Python executable `reticulate` has been configured
#' to use.
#'
#' @export
py_exe <- function() {
# if python has already been initialized, use that
if (!is.null(.globals$py_config))
return(.globals$py_config$python)
# otherwise, guess what version of python we'd use
py_discover_config()$python
}
#' Build Python configuration error message
#'
#' @param prefix Error message prefix
#'
#' @keywords internal
#' @export
py_config_error_message <- function(prefix) {
message <- prefix
config <- py_config()
if (!is.null(config)) {
message <- paste0(message, "\n\nDetected Python configuration:\n\n",
str(config), "\n")
}
message
}
#' Check if Python is available on this system
#'
#' @param initialize `TRUE` to attempt to initialize Python bindings if they
#' aren't yet available (defaults to `FALSE`).
#'
#' @return Logical indicating whether Python is initialized.
#'
#' @note The `py_numpy_available` function is a superset of the
#' `py_available` function (it calls `py_available` first before
#' checking for NumPy).
#'
#' @export
py_available <- function(initialize = FALSE) {
if (is_python_initialized())
return(.globals$py_config$available)
if (!initialize)
return(FALSE)
tryCatch({
ensure_python_initialized()
.globals$py_config$available
}, error = function(e) FALSE)
}
#' @rdname py_available
#' @export
py_numpy_available <- function(initialize = FALSE) {
if (!py_available(initialize = initialize))
return(FALSE)
py_numpy_available_impl()
}
#' Check if a Python module is available on this system.
#'
#' Note that this function will also attempt to initialize Python
#' before checking if the requested module is available.
#'
#' @param module The name of the module.
#'
#' @return `TRUE` if the module is available and can be loaded;
#' `FALSE` otherwise.
#'
#' @export
py_module_available <- function(module) {
tryCatch({ import(module); TRUE }, error = clear_error_handler(FALSE))
}
#' Discover the version of Python to use with reticulate.
#'
#' This function enables callers to check which versions of Python will be
#' discovered on a system as well as which one will be chosen for use with
#' reticulate.
#'
#' The order of discovery is documented in `vignette("versions")`, also available online
#' [here](https://rstudio.github.io/reticulate/articles/versions.html#order-of-discovery)
#'
#' @param required_module A optional module name that will be used to select the
#' Python environment used.
#'
#' @param use_environment An optional virtual/conda environment name to prefer
#' in the search.
#'
#' @return Python configuration object.
#'
#' @export
py_discover_config <- function(required_module = NULL, use_environment = NULL) {
if (is.null(required_module) && length(.globals$delay_load_imports$module))
required_module <- .globals$delay_load_imports$module[[1L]]
if (!is.null(required_module))
required_module <- strsplit(required_module, ".", fixed = TRUE)[[1L]][[1L]]
# check if python symbols can already be found in the current process
main_process_info <- main_process_python_info()
if (!is.null(main_process_info)) {
python_version <- normalize_python_path(main_process_info$python)$path
try(return(python_config(python_version, required_module,
forced = "the current process")))
}
# if PYTHON_SESSION_INITIALIZED is specified then use it without scanning
# further (this is a "hard" requirement because an embedding process may
# set this to indicate that the python interpreter is already loaded)
py_session_initialized <- py_session_initialized_binary()
if (!is.null(py_session_initialized)) {
python_version <- normalize_python_path(py_session_initialized)$path
try(return(python_config(python_version, required_module,
forced = "PYTHON_SESSION_INITIALIZED")))
}
# if RETICULATE_PYTHON is specified then use it without scanning further
reticulate_env <- Sys.getenv("RETICULATE_PYTHON", unset = NA)
if (!is.na(reticulate_env)) {
if (reticulate_env == "managed") {
return(python_config_ephemeral_uv_venv(required_module))
}
python_version <- normalize_python_path(reticulate_env)
if (!python_version$exists)
stop("Python specified in RETICULATE_PYTHON (", reticulate_env, ") does not exist")
python_version <- python_version$path
try(return(python_config(python_version, required_module,
forced = "RETICULATE_PYTHON")))
}
# if RETICULATE_PYTHON_ENV is specified then use that
# can be a bare envname or a path
reticulate_python_env <- Sys.getenv("RETICULATE_PYTHON_ENV", unset = NA)
if (!is.na(reticulate_python_env)) {
# resolve the path to the environment directory
tryCatch({
python <- py_resolve(reticulate_python_env)
}, error = function(e) {
stop("Python specified in RETICULATE_PYTHON_ENV (", reticulate_python_env, ") does not exist")
})
try(return(python_config(python, required_module,
forced = "RETICULATE_PYTHON_ENV")))
}
# look for a required python version
# (e.g. use_python("/usr/bin/python", required = TRUE))
required_version <- .globals$required_python_version
if (!is.null(required_version)) {
python_version <- normalize_python_path(required_version)$path
try(return(python_config(python_version, required_module,
forced = "use_python() function")))
}
if (tolower(Sys.getenv("RETICULATE_USE_MANAGED_VENV")) %in% c("true", "1", "yes")) {
return(python_config_ephemeral_uv_venv(required_module))
}
# check if we're running in an activated venv
if (is_virtualenv(envpath <- Sys.getenv("VIRTUAL_ENV", NA))) {
# If this check ends up being too strict, we can alternatively do:
# if (python_info(Sys.which("python"))$type == "virtualenv") {
try(return(python_config(
virtualenv_python(envpath), required_module,
forced = "VIRTUAL_ENV")))
}
# if we're working within a project that contains a pyproject.toml file,
# then use the copy of Python associated with the poetry environment
config <- tryCatch(poetry_config(required_module), error = identity)
if (!inherits(config, "error") && !is.null(config))
return(config)
# if we're working within a project that contains a Pipfile, then
# use the copy of Python associated with that pipenv
config <- tryCatch(pipenv_config(required_module), error = identity)
if (!inherits(config, "error") && !is.null(config))
return(config)
# if the current directory contains a venv, use it:
for (dirpath in c("./venv", "./virtualenv", "./.venv", "./.virtualenv")) {
if (dir.exists(dirpath) && is_virtualenv(dirpath)) {
python <- virtualenv_python(dirpath)
try(return(python_config(
python, required_module,
forced = sprintf("'%s' existing in the current working directory", dirpath))))
}
}
# look for any environment names supplied in a call like:
# import("bar", delayed = list(environment = "r-barlyr"))
for (envname in c(use_environment, .globals$delay_load_imports$environment)) {
if (is.na(envname))
next
python <- tryCatch(py_resolve(envname), error = identity)
if (!inherits(python, "error"))
try(return(python_config(
python, required_module,
forced = sprintf('import("%s")', required_module)
)))
}
# check for `use_python(required = FALSE)`. This should rarely be triggered
# any more by users, since the default value for `required` changed from FALSE to TRUE.
# excepting if the use_*() call is within a `.onLoad()` call of a package.
# first call of use_*(,required = FALSE) wins
optional_requested_use_pythons <- reticulate_python_versions()
for (python in optional_requested_use_pythons) {
try(return(python_config(
python, required_module,
forced = "use_python(, required = FALSE)"
)))
}
# look in virtual environments that have a required module derived name,
# e.g., given a call to import("bar"), look for an environment named "r-bar"
for (module in c(required_module, .globals$delay_load_imports$module)) {
envname <- paste0("r-", module)
python <- tryCatch(py_resolve(envname), error = identity)
if (!inherits(python, "error"))
try(return(python_config(
python, required_module,
forced = sprintf('import("%s")', required_module)
)))
}
# if RETICULATE_PYTHON_FALLBACK is specified then use it
reticulate_env <- Sys.getenv("RETICULATE_PYTHON_FALLBACK", unset = NA)
if (!is.na(reticulate_env)) {
python_version <- normalize_python_path(reticulate_env)
if (!python_version$exists)
stop("Python specified in RETICULATE_PYTHON_FALLBACK (", reticulate_env, ") does not exist")
python_version <- python_version$path
try(return(python_config(python_version, required_module, python_version,
forced = "RETICULATE_PYTHON_FALLBACK")))
}
# Look for a "r-reticulate" venv or condaenv. if found, use that.
python <- tryCatch(py_resolve("r-reticulate", type = "virtualenv"), error = identity)
if (!inherits(python, "error"))
try(return(python_config(python, required_module)))
## At this point, the user, (and package authors on behalf of the user), has
## expressed no preference for any particular python installation, or the
## preference expressed is for a python environment that does not exist.
##
## In other words,
## - no use_python(), use_virtualenv(), use_condaenv() calls
## - no RETICULATE_PYTHON, RETICULATE_PYTHON_ENV, or RETICULATE_PYTHON_FALLBACK env vars
## - no existing venv in the current working directory named: venv .venv virtualenv or .virtualenv
## - no env named 'r-bar' if there was a call like `import('foo', delay_load = list(environment = "r-bar"))`
## - no env named 'r-foo' if there was a call like `import('foo')`
## - we're not running under an already activated venv (i.e., no VIRTUAL_ENV env var)
## - no configured poetry or pipfile or venv in the current working directory
## - no env named 'r-reticulate'
## Default to using a reticulate-managed ephemeral venv that satisfies
## the Python requirements declared via `py_require()`.
user_opted_out <- tolower(Sys.getenv("RETICULATE_USE_MANAGED_VENV")) %in% c("false", "0", "no")
if (!user_opted_out) {
return(python_config_ephemeral_uv_venv(required_module))
}
# fall back to using the PATH python, or fail.
# We intentionally do not go on a fishing expedition for every possible python,
# for two reasons:
# - the default workflow should be to use venvs
# - which python is found should be predictable.
# create a list of possible python versions to bind to
python_versions <- unique(c(
Sys.which("python3"),
Sys.which("python")
))
windows_registry_python <- character()
if (is_windows()) {
append(python_versions) <- windows_registry_python <-
local({
df <- py_versions_windows()
df$executable_path[df$type == "PythonCore"]
})
}
# filter locations by existence
if (length(python_versions) > 0)
python_versions <- python_versions[file.exists(python_versions)]
if (is_windows()) {
# remove 'fake' / inaccessible python executables
# https://github.com/rstudio/reticulate/issues/534
info <- suppressWarnings(file.info(python_versions))
size <- ifelse(is.na(info$size), 0, info$size)
python_versions <- python_versions[size != 0]
# We should not automatically discover windows app store python
python_versions <-
python_versions[!is_windows_app_store_python(python_versions)]
# remove msys2 / cygwin python executables.
# path translation going to and from msys2 currently not implemented.
# E.g.: "C:\foo\bar" -> "/c/foo/bar" and "/foo/bar" -> "C:\rtools43\foo\bar"
# https://github.com/rstudio/reticulate/issues/1325
get_platform <- function(python) {
tryCatch({
plat <- system2(python,
args = c("-c", shQuote("import sys; print(sys.platform)")),
stdout = TRUE, stderr = FALSE
)
if (rlang::is_string(plat)) plat else ""
}, warning = function(w) "", error = function(e) "")
}
python_sys_platforms <- vapply(python_versions, get_platform, "")
python_versions <- python_versions[python_sys_platforms != ""]
python_versions <- python_versions[python_sys_platforms != "cygwin"]
}
# scan until we find a version of python that meets our qualifying conditions
valid_python_versions <- c()
for (python_version in python_versions) {
# get the config
config <- try(python_config(python_version, required_module, python_versions,
forced = if (python_version %in% windows_registry_python)
"Windows Registry" else "PATH"))
if(inherits(config, "try-error"))
next
# if we have a required module ensure it's satisfied.
# also check architecture (can be an issue on windows)
has_python_gte_36 <- as.numeric_version(config$version) >= "3.6"
has_compatible_arch <- !is_incompatible_arch(config)
has_preferred_numpy <- !is.null(config$numpy) && config$numpy$version >= "1.6"
if (has_compatible_arch && has_preferred_numpy)
append(valid_python_versions) <- python_version
has_required_module <- is.null(config$required_module) || !is.null(config$required_module_path)
if (has_python_gte_36 && has_compatible_arch && has_preferred_numpy && has_required_module)
return(config)
}
# no preferred found, return first with valid config if we have it or NULL
if (length(valid_python_versions) > 0)
try(return(python_config(valid_python_versions[[1]], required_module, python_versions)))
else if (length(python_versions) > 0)
try(return(python_config(python_versions[[1]], required_module, python_versions)))
else
return(NULL)
}
python_config_ephemeral_uv_venv <- function(required_module) {
if (isTRUE(getOption("reticulate.python.initializing"))) {
python <- try(uv_get_or_create_env())
if (!is.null(python) && !inherits(python, "try-error"))
try({
config <- python_config(python, required_module, forced = "py_require()")
config$ephemeral <- TRUE
return(config)
})
}
# most likely called from py_exe()
NULL
}
py_discover_config_fallbacks <- function() {
# prefer conda python if available
conda <- find_conda()[[1L]]
if (!is.null(conda) && file.exists(conda)) {
pythons <- tryCatch(
conda_python(envname = "base", conda = conda, all = TRUE),
error = identity
)
if (is.character(pythons))
return(pythons)
}
# on Windows, try looking in the registry
if (is_windows())
return(py_versions_windows()$executable_path)
# otherwise, just search some default locations
prefixes <- c(
"/opt/local/python",
"/opt/python",
"/usr/local",
"/usr"
)
suffixes <- c("bin/python3", "bin/python")
grid <- expand.grid(
prefix = prefixes,
suffix = suffixes,
KEEP.OUT.ATTRS = FALSE,
stringsAsFactors = FALSE
)
paste(grid$prefix, grid$suffix, sep = "/")
}
try_create_default_virtualenv <- function(package = "reticulate", ...) {
# If the environment already exists, use it
envname <- paste0("r-", package)
if (virtualenv_exists(envname))
return(virtualenv_python(envname))
if (!isTRUE(getOption("reticulate.python.initializing")))
return(NULL)
# if we're in a recursive call, return NULL (we've already asked.)
# py_discover_config() -> try_create_default_virtualenv() ->
# virtualenv_create() -> virtualenv_starter() -> py_exe() ->
# py_discover_config() -> try_create_default_virtualenv()
for(cl in sys.calls()[-length(sys.calls())])
if (identical(cl[[1L]], quote(try_create_default_virtualenv)))
return(NULL)
permission <- tolower(Sys.getenv("RETICULATE_AUTOCREATE_PACKAGE_VENV", ""))
if (permission %in% c("false", "0", "no"))
return(NULL)
if (permission == "") {
return(NULL)
if (is_interactive()) {
permission <- utils::askYesNo(sprintf(
"Would you like to create a default Python environment for the %s package?",
package))
if (!isTRUE(permission))
return(NULL)
permission <- "true"
}
}
if (!permission %in% c("true", "yes", "1"))
return(NULL)
virtualenv_create(
envname = envname,
...
)
}
#' Discover versions of Python installed on a Windows system
#'
#' @return Data frame with `type`, `hive`, `install_path`, `executable_path`,
#' and `version`.
#'
#' @keywords internal
#' @export
py_versions_windows <- function() {
rbind(
read_python_versions_from_registry("HCU", key = "PythonCore"),
read_python_versions_from_registry("HLM", key = "PythonCore"),
windows_registry_anaconda_versions()
)
}
python_virtualenv_versions <- function() {
home <- virtualenv_root()
bins <- python_environments(home)
data.frame(
name = basename(dirname(dirname(bins))),
python = bins,
stringsAsFactors = FALSE
)
}
python_conda_versions <- function() {
if (is_windows()) {
# list all conda environments
conda_envs <- data.frame(name = character(),
python = character(),
stringsAsFactors = FALSE)
registry_versions <- py_versions_windows()
anaconda_registry_versions <- subset(registry_versions, registry_versions$type == "Anaconda")
for (conda in file.path(anaconda_registry_versions$install_path, "Scripts", "conda.exe")) {
conda_envs <- rbind(conda_envs, conda_list(conda = conda))
}
conda_envs
} else {
env_dirs <- c("~/anaconda/envs",
"~/anaconda2/envs",
"~/anaconda3/envs",
"~/anaconda4/envs",
"~/miniconda/envs",
"~/miniconda2/envs",
"~/miniconda3/envs",
"~/miniconda4/envs",
"/anaconda/envs",
"/anaconda2/envs",
"/anaconda3/envs",
"/anaconda4/envs",
"/miniconda/envs",
"/miniconda2/envs",
"/miniconda3/envs",
"/miniconda4/envs",
"~/opt/anaconda/envs",
"~/opt/anaconda2/envs",
"~/opt/anaconda3/envs",
"~/opt/anaconda4/envs",
"~")
python_env_binaries <- python_environments(env_dirs)
data.frame(name = basename(dirname(dirname(python_env_binaries))),
python = python_env_binaries,
stringsAsFactors = FALSE)
}
}
python_environments <- function(env_dirs, required_module = NULL) {
# filter env_dirs by existence
env_dirs <- env_dirs[utils::file_test("-d", env_dirs)]
# envs to return
envs <- character()
# python bin differs by platform
python_bin <- ifelse(is_windows(), "python.exe", "bin/python")
for (env_dir in env_dirs) {
# filter by required module if requested
if (!is.null(required_module)) {
module_envs <- c(paste0("r-", required_module), required_module)
envs <- c(envs, path.expand(sprintf("%s/%s/%s", env_dir, module_envs, python_bin)))
# otherwise return all
} else {
envs <- c(envs, path.expand(sprintf("%s/%s",
list.dirs(env_dir, recursive = FALSE),
python_bin)))
}
}
# filter by existence
if (length(envs) > 0)
envs[file.exists(envs)]
else
envs
}
python_munge_path <- function(python) {
# add the python bin dir to the PATH (so that any execution of python from
# within the interpreter, from a system call, or from within a terminal
# hosted within the front end will use the same version of python.
#
# we do this up-front in python_config as otherwise attempts to discover
# and load numpy can fail, especially on Windows
# https://github.com/rstudio/reticulate/issues/367
python_home <- dirname(python)
python_dirs <- c(normalizePath(python_home))
# fix rpath for anaconda libmkl
if (is_osx()) {
libmkl <- file.path(python_home, "../lib/libmkl_intel_thread.dylib")
if (file.exists(libmkl)) {
libmkl <- normalizePath(libmkl)
args <- c("-add_rpath", shQuote(dirname(libmkl)), libmkl)
system2("install_name_tool", args, stdout = FALSE, stderr = FALSE)
}
}
if (is_conda_python(python)) {
conda_info <- get_python_conda_info(python)
new_path <- conda_run2(
"python",
c("-c", shQuote("import os; print(os.environ['PATH'])")),
conda = conda_info$conda,
envname = conda_info$root,
intern = TRUE
)
# maybe discard unsilenceable warnings, see issue #1303
new_path <- new_path[length(new_path)]
old_path <- Sys.getenv("PATH")
Sys.setenv("PATH" = new_path)
return(old_path)
}
if (is_windows()) {
# include the Scripts path, as well
python_scripts <- file.path(python_home, "Scripts")
if (file.exists(python_scripts))
python_dirs <- c(python_dirs, normalizePath(python_scripts))
# we saw some crashes occurring when Python modules attempted to load
# dynamic libraries at runtime; e.g.
#
# Intel MKL FATAL ERROR: Cannot load mkl_intel_thread.dll
#
# we work around this by putting the associated binary directory
# on the PATH so it can be successfully resolved
python_library_bin <- file.path(python_home, "Library/bin")
if (file.exists(python_library_bin))
python_dirs <- c(python_dirs, normalizePath(python_library_bin))
}
path_prepend(python_dirs)
}
python_config_impl <- function(python) {
if(!file.exists(python)) {
# Test if `python` is broken symlink, which can happen with a venv if the
# venv starter is moved/removed
msg <- paste0("Error running ", shQuote(python), ": No such file.")
info <- python_info(python)
if (info$type == "virtualenv") {
msg <- paste0(sep = "", c(msg, "\n",
"The Python installation used to create the virtualenv has been moved or removed",
if(is.null(info$starter)) "." else ":\n ", shQuote(info$starter)
))
}
stop(msg)
}
script <- system.file("config/config.py", package = "reticulate")
config <- tryCatch(system2(
command = python,
args = shQuote(script),
stdout = TRUE,
stderr = FALSE
), error = function(e) {
e$message <- paste(e$message, shQuote(python))
stop(e)
})
# check for error
status <- attr(config, "status")
if (!is.null(status)) {
errmsg <- attr(config, "errmsg")
stop("Error ", status, " occurred running ", python, ": ", errmsg)
}
# on macOS, if we see some variables referencing /Applications/Xcode.app
# but that doesn't actually exist, then redirect to default CLT
if (is_osx()) {
clt <- "/Library/Developer/CommandLineTools"
xcode <- "/Applications/Xcode.app/Contents/Developer"
if (file.exists(clt))
config <- gsub(xcode, clt, config, fixed = TRUE)
}
# return config
config
}
local_prefix_python_lib_to_ld_library_path <- function(python, envir = parent.frame()) {
if(!is_linux())
return(invisible())
oldlibpath <- prefix_python_lib_to_ld_library_path(python)
if (is.na(oldlibpath)) {
defer(Sys.unsetenv("LD_LIBRARY_PATH"), envir = envir)
} else {
defer(Sys.setenv(LD_LIBRARY_PATH = oldlibpath), envir = envir)
}
}
prefix_python_lib_to_ld_library_path <- function(python) {
# might need to do something similar on macOS too, eventually.
if(!is_linux())
return(invisible())
# resolve the <prefix>/lib path for both the venv, and the venv starter
python <- c(python, normalizePath(python, mustWork = FALSE))
libpath <- file.path(dirname(dirname(python)), "lib")
libpath <- libpath[file.exists(libpath)]
if (length(libpath)) {
oldlibpath <- Sys.getenv("LD_LIBRARY_PATH", unset = NA)
newlibpath <- paste0(c(libpath, oldlibpath), collapse = ":")
Sys.setenv(LD_LIBRARY_PATH = newlibpath)
}
invisible(oldlibpath)
}
python_config <- function(python,
required_module = NULL,
python_versions = python,
forced = NULL)
{
# normalize and remove duplicates
python <- canonical_path(python)
python_versions <- canonical_path(python_versions)
python_versions <- unique(python_versions)
# update and restore PATH when done
oldpath <- python_munge_path(python)
on.exit(Sys.setenv(PATH = oldpath), add = TRUE)
# set LD_LIBRARY_PATH on Linux as well, just to make sure Python libraries
# can be resolved if necessary (also need to guard against users who munge
# LD_LIBRARY_PATH in a way that breaks dynamic lookup of Python libraries)
if (is_linux())
local_prefix_python_lib_to_ld_library_path(python)
# collect configuration information
if (!is.null(required_module)) {
Sys.setenv(RETICULATE_REQUIRED_MODULE = required_module)
on.exit(Sys.unsetenv("RETICULATE_REQUIRED_MODULE"), add = TRUE)
}
# execute config script
config <- python_config_impl(python)
# read output as dcf
config_connection <- textConnection(config)
on.exit(close(config_connection), add = TRUE)
config <- read.dcf(config_connection, all = TRUE)
# get the full textual version and the numeric version, check for anaconda
version_string <- config$Version
version <- config$VersionNumber
anaconda <- grepl("anaconda|continuum", version_string, ignore.case = TRUE)
architecture <- config$Architecture
# determine the location of libpython
# see also: https://github.com/JuliaPy/PyCall.jl/blob/master/deps/build.jl
main_process_info <- main_process_python_info()
if (!is.null(main_process_info)) {
# either we have the main process libpython, or NA in case of PIE executable
libpython <- main_process_info$libpython
} else if (is_windows()) {
# construct DLL name
dll <- sprintf("python%s.dll", gsub(".", "", version, fixed = TRUE))
# default to just using dll as libpython path (implies lookup on PATH)
libpython <- dll
# search for python DLL in one of the declared prefixes
roots <- c(
dirname(python),
config$Prefix,
config$ExecPrefix,
config$BaseExecPrefix
)
for (root in roots) {
candidate <- file.path(root, dll)
if (file.exists(candidate)) {
libpython <- canonical_path(candidate)
break
}
}
} else {
# default to NULL
libpython <- NULL
# check multiple library directories
# (necessary for virtualenvs that don't copy over the shared library)
libsrcs <- c("LIBPL", "LIBDIR", "Prefix", "ExecPrefix", "BaseExecPrefix")
for (libsrc in libsrcs) {
# skip null entries in config
src <- config[[libsrc]]
if (is.null(src))
next
# get appropriate libpython extension for platform
ext <- switch(
Sys.info()[["sysname"]],
Darwin = ".dylib",
Windows = ".dll",
".so"
)
# try to resolve libpython in this location
pattern <- sprintf("^libpython%sd?m?%s", version, ext)
candidates <- list.files(c(src, file.path(src, "lib")),
pattern = pattern, full.names = TRUE)
if (length(candidates)) {
libpython <- candidates
break
}
}
}
# determine PYTHONHOME
pythonhome <- NULL
if (!is.null(config$Prefix)) {
pythonhome <- canonical_path(config$Prefix)
if (!is_windows()) {
exec_prefix <- canonical_path(config$ExecPrefix)
pythonhome <- paste(pythonhome, exec_prefix, sep = ":")
}
}
as_numeric_version <- function(version) {
version <- clean_version(version)
numeric_version(version)
}
# check for numpy
numpy <- NULL
if (!is.null(config$NumpyPath)) {
numpy <- list(
path = canonical_path(config$NumpyPath),
version = as_numeric_version(config$NumpyVersion)
)
}
# check to see if this is a Python virtualenv
root <- dirname(dirname(python))
virtualenv <- if (is_virtualenv(root))
root
else
""
# check for virtualenv activate script
activate_this <- file.path(dirname(python), "activate_this.py")
if (file.exists(activate_this))
virtualenv_activate <- activate_this
else
virtualenv_activate <- ""
# check for required module
required_module_path <- config$RequiredModulePath
# return config info
info <- list(
python = python,
libpython = libpython[1],
pythonhome = pythonhome,
pythonpath = config$PythonPath,
prefix = config$Prefix,
exec_prefix = config$ExecPrefix,
base_exec_prefix = config$BaseExecPrefix,
virtualenv = virtualenv,
virtualenv_activate = virtualenv_activate,
executable = config$Executable, # sys.executable
base_executable = config$BaseExecutable, # sys._base_executable; exe for venv starter
version_string = version_string,
version = as.package_version(version),
architecture = architecture,
anaconda = anaconda,
conda = config$IsConda,
numpy = numpy,
required_module = required_module,
required_module_path = required_module_path,
available = FALSE,
python_versions = python_versions,
forced = forced
)
class(info) <- "py_config"
info
}
#' @export
str.py_config <- function(object, ...) {
NextMethod()
}
#' @export
format.py_config <- function(x, ...) {
out <- ""
out <- paste0(out, "python: ", x$python, "\n")
out <- paste0(out, "libpython: ", ifelse(is.null(x$libpython), "[NOT FOUND]", x$libpython), ifelse(is_windows() || is.null(x$libpython) || is.na(x$libpython) || file.exists(x$libpython), "", "[NOT FOUND]"), "\n")
out <- paste0(out, "pythonhome: ", ifelse(is.null(x$pythonhome), "[NOT FOUND]", x$pythonhome), "\n")
if (nzchar(x$virtualenv_activate))
out <- paste0(out, "virtualenv: ", x$virtualenv_activate, "\n")
out <- paste0(out, "version: ", x$version_string, "\n")
if (is_windows())
out <- paste0(out, "Architecture: ", x$architecture, "\n")
if (!is.null(x$numpy)) {
out <- paste0(out, "numpy: ", x$numpy$path, "\n")
out <- paste0(out, "numpy_version: ", as.character(x$numpy$version), "\n")
} else {
out <- paste0(out, "numpy: [NOT FOUND]\n")
}
if (!is.null(x$required_module)) {
out <- paste0(out, sprintf("%-16s", paste0(x$required_module, ":")))
if (!is.null(x$required_module_path))
out <- paste0(out, x$required_module_path, "\n")
else
out <- paste0(out, "[NOT FOUND]\n")
}
if (!is.null(x$forced)) {
out <- paste0(out, "\nNOTE: Python version was forced by ", x$forced, "\n")
}
if (length(x$python_versions) > 1) {
out <- paste0(out, "\npython versions found: \n")
python_versions <- paste0(" ", x$python_versions, collapse = "\n")
out <- paste0(out, python_versions, sep = "\n")
}
out
}
#' @export
print.py_config <- function(x, ...) {
cat(format(x))
}
is_windows <- function() {
identical(.Platform$OS.type, "windows")
}
is_unix <- function() {
identical(.Platform$OS.type, "unix")
}
is_osx <- function() {
Sys.info()["sysname"] == "Darwin"
}
is_macos <- is_osx
is_linux <- function() {
identical(tolower(Sys.info()[["sysname"]]), "linux")
}
is_ubuntu <- function() {
# check /etc/lsb-release
if (is_unix() && file.exists("/etc/lsb-release")) {
lsbRelease <- readLines("/etc/lsb-release")
any(grepl("Ubuntu", lsbRelease))
} else {
FALSE
}
}
is_fedora <- function() {
if (is_unix() && file.exists("/etc/os-release")) {
os_info <- readLines("/etc/os-release")
any(grepl("Fedora", os_info))
} else {
FALSE
}
}
is_rstudio <- function() {
exists("RStudio.Version", envir = globalenv())
}
is_rstudio_desktop <- function() {
if (!exists("RStudio.Version", envir = globalenv()))
return(FALSE)
RStudio.Version <- get("RStudio.Version", envir = globalenv())
version <- RStudio.Version()
identical(version$mode, "desktop")
}
is_positron <- function() {
exists(".ps.ark.version", envir = globalenv())
}
clean_version <- function(version) {
gsub("\\.$", "", gsub("[A-Za-z_+].*$", "", version))
}
reticulate_python_versions <- function() {
# python versions to return
python_versions <- c()
# get versions specified via use_* functions
reticulate_python_options <- .globals$use_python_versions
# determine python versions to return
if (length(reticulate_python_options) > 0) {
for (i in 1:length(reticulate_python_options)) {
python <- normalize_python_path(reticulate_python_options[[i]])
if (python$exists)
python_versions <- c(python_versions, python$path)
}
}
# return them
python_versions
}
normalize_python_path <- function(python) {
# normalize trailing slash and expand
python <- gsub("[\\/]+$", "", python)
python <- path.expand(python)
# check for existence
if (!utils::file_test("-d", python) &&
!utils::file_test("-f", python)) {
list(
path = python,
exists = FALSE
)
} else {
# append binary if it's a directory
if (utils::file_test("-d", python))
python <- file.path(python, "python")
# append .exe if necessary on windows
# accept .bat for pyenv-win shim
if (is_windows() && (!grepl("^.*\\.(exe|bat)$", tolower(python))))
python <- paste0(python, ".exe")
# return
list(
path = python,
exists = TRUE
)
}
}
windows_registry_anaconda_versions <- function() {
rbind(read_python_versions_from_registry("HCU", key = "ContinuumAnalytics", type = "Anaconda"),
read_python_versions_from_registry("HLM", key = "ContinuumAnalytics", type = "Anaconda"))
}
read_python_versions_from_registry <- function(hive, key, type=key) {
python_core_key <- tryCatch(utils::readRegistry(
key = paste0("SOFTWARE\\Python\\", key), hive = hive, maxdepth = 3),
error = function(e) NULL)
types <- c()
hives <- c()
install_paths <- c()
executable_paths <- c()
versions <- c()
archs <- c()
if (length(python_core_key) > 0) {
for (version in names(python_core_key)) {
version_key <- python_core_key[[version]]
if (is.list(version_key) && !is.null(version_key$InstallPath)) {
version_dir <- version_key$InstallPath$`(Default)`
if (!is.null(version_dir) && utils::file_test("-d", version_dir)) {
# determine install_path and executable_path
install_path <- version_dir
executable_path <- file.path(install_path, "python.exe")
# proceed if it exists
if (file.exists(executable_path)) {
# determine version and arch
if (type == "Anaconda") {
matches <- regexec("^Anaconda.*(32|64).*$", version)
matches <- regmatches(version, matches)[[1]]
if (length(matches) == 2) {
version <- version_key$SysVersion
arch <- matches[[2]]
} else {
warning("Unexpected format for Anaconda version: ", version,
"\n(Please install a more recent version of Anaconda)")
arch <- NA
}
} else { # type == "PythonCore"
matches <- regexec("^(\\d+)\\.(\\d+)(?:-(32|64))?$", version)
matches <- regmatches(version, matches)[[1]]
if (length(matches) == 4) {
version <- paste(matches[[2]], matches[[3]], sep = ".")
arch <- matches[[4]]
if (!nzchar(arch)) {
if (numeric_version(version) >= "3.0")
arch <- "64"
else {
python_arch <- python_arch(executable_path)
arch <- gsub("bit", "", python_arch, fixed = TRUE)
}
}
} else {
warning("Unexpected format for PythonCore version: ", version)
arch <- NA
}
}
if (!is.na(arch)) {
# convert to R arch
if (arch == "32")
arch <- "i386"
else if (arch == "64")
arch <- "x64"
# append to vectors
types <- c(types, type)
hives <- c(hives, hive)
install_paths <- c(install_paths, utils::shortPathName(install_path))
executable_paths <- c(executable_paths, utils::shortPathName(executable_path))
versions <- c(versions, version)
archs <- c(archs, arch)
}
}
}
}
}
}
data.frame(
type = types,
hive = hives,
install_path = install_paths,
executable_path = executable_paths,
version = versions,
arch = archs,
stringsAsFactors = FALSE
)
}
# get the architecture from a python binary
python_arch <- function(python) {
# run command
result <- system2(python, stdout = TRUE, args = c("-c", shQuote(
"import sys; import platform; sys.stdout.write(platform.architecture()[0])")))
# check for error
error_status <- attr(result, "status")
if (!is.null(error_status))
stop("Error ", error_status, " occurred while checking for python architecture", call. = FALSE)
# return arch
result
}
# convert R arch to python arch
current_python_arch <- function() {
if (.Platform$r_arch == "i386")
"32bit"
else if (.Platform$r_arch == "x64")
"64bit"
else
"Unknown"
}
# check for compatible architecture
is_incompatible_arch <- function(config) {
if (is_windows()) {
!identical(current_python_arch(),config$architecture)
} else {
FALSE
}
}
py_session_initialized_binary <- function() {
# binary to return
python_binary <- NULL
# check environment variable
py_session <- Sys.getenv("PYTHON_SESSION_INITIALIZED", unset = NA)
if (!is.na(py_session)) {
py_session <- strsplit(py_session, ":", fixed = TRUE)[[1]]
py_session <- strsplit(py_session, "=", fixed = TRUE)
keys <- character()
py_session <- lapply(py_session, function(x) {
keys <<- c(keys, x[[1]])
x[[2]]
})
if (all(c("current_pid", "sys.executable") %in% keys)) {
names(py_session) <- keys
# verify it's from the current process
if (identical(as.character(Sys.getpid()), py_session$current_pid)) {
python_binary <- py_session$sys.executable
}
} else {
warning("PYTHON_SESSION_INITIALIZED does not include current_pid and sys.executable",
call. = FALSE)
}
}
# return
python_binary
}
is_windows_app_store_python <- function(python) {
# There is probably a better way, but don't currently have
# access to a windows machine with the app store installed.
python <- normalizePath(python, winslash = "/", mustWork = FALSE)
grepl("/Program Files/WindowsApps/PythonSoftwareFoundation.Python",
python, fixed = TRUE)
}
find_all_pythons <- function(root = "/") {
cmd <- sprintf("find %s -type f -regex '.*/python[0-9.]*$' -executable 2>/dev/null",
root)
as.character(suppressWarnings(system(cmd, intern = TRUE)))
}
|