Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fails to compare version on linux blocking initialize and install #375

Open
latot opened this issue Jan 7, 2025 · 0 comments
Open

fails to compare version on linux blocking initialize and install #375

latot opened this issue Jan 7, 2025 · 0 comments

Comments

@latot
Copy link

latot commented Jan 7, 2025

  • rgee version: Git
  • R version: 4.4.2
  • Operating System: Ubuntu Noble

Hi, I was trying to initialize the project normally but I got:

rgee::ee_install(py_env="rgee")
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── Python configuration used to create rgee ──
python:         /home/cit_16/.local/share/r-miniconda/envs/r-reticulate/bin/python
libpython:      /home/cit_16/.local/share/r-miniconda/envs/r-reticulate/lib/libpython3.10.so
pythonhome:     /home/cit_16/.local/share/r-miniconda/envs/r-reticulate:/home/cit_16/.local/share/r-miniconda/envs/r-reticulate
version:        3.10.16 | packaged by conda-forge | (main, Dec  5 2024, 14:16:10) [GCC 13.3.0]
numpy:          /home/cit_16/.local/share/r-miniconda/envs/r-reticulate/lib/python3.10/site-packages/numpy
numpy_version:  2.2.1
ee:             [NOT FOUND]
──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── 
1. Removing the previous Python Environment (rgee), if it exists ...
rgee not found 


2. Creating a Python Environment (rgee)
Error en value[[3L]](cond): 
  An error occur when ee_install was creating the Python Environment. Run ee_clean_pyenv() and restart the R session, before trying again.
> traceback()
6: stop("An error occur when ee_install was creating the Python Environment. ", 
       "Run ee_clean_pyenv() and restart the R session, before trying again.")
5: value[[3L]](cond)
4: tryCatchOne(expr, names, parentenv, handlers[[1L]])
3: tryCatchList(expr, classes, parentenv, handlers)
2: tryCatch(expr = ee_install_create_pyenv(python_version = python_version, 
       py_env = py_env), error = function(e) stop("An error occur when ee_install was creating the Python Environment. ", 
       "Run ee_clean_pyenv() and restart the R session, before trying again."))
1: rgee::ee_install(py_env = "rgee")

After debug and debug I reached the function ee_check_python, where fails:

py_version <- py_discover_config()[["version"]]
....
  if (utils::compareVersion(py_version, "3.5") == -1) {
...

Fails the utils function with strsplit(a, "[.-]"), because of the type of py_version is not the right type:

> py_version
[1] ‘3.10’
> class(py_version)
[1] "package_version" "numeric_version"
> typeof(py_version)
[1] "list"

The function py_discover_config() should always return a vector of length 1 and be a character.

Thx!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant