Paul Müller
Paul Müller
I am having the same/similar issue with PyInstaller on GitHub Actions (https://github.com/ZELLMECHANIK-DRESDEN/ShapeOut2/runs/1902163767?check_suite_focus=true). ``` *** caught segfault *** address 0x2e9e8, cause 'memory not mapped' Traceback: 1: initMethodDispatch(where) 2: fun(libname, pkgname) 3:...
I can confirm that this issue still persists on Windows 10.
Thanks, yes, it was `R_HOME` indeed (changed it in OP). I find it unintuitive that *R* need the environment variable `R_HOME` (or the registry) to figure out from where it...
Thanks for clearing up the part with the dynamically loaded shared library. I learned that R itself does not search in HKEY_CURRENT_USER for R_HOME (but rpy2 does since #788). So...
I just realized that if you set `os.environ["R_HOME"] = rpy2.situation.get_r_home()`, then everything works. This is because anything you set in `os.environ` is set globally for the current process and any...
@honghh2018 Please create a new issue. Your problem is not related to this Windows-related issue here. You are on Linux and it looks more like something is wrong with your...
Ok good, I have absolutely no problem with being the only member in a team. Once you set up the triage team, I would start going through the current issue...
This seems to be a recurrent issue. I am trying to install via pip on appveyor without success (e.g. https://ci.appveyor.com/project/paulmueller/dclab/builds/36209279/job/4n85sx8i3siua18i). Related issues: - #584 - #619 - #624 - #688...
I strongly believe that this is error is related to the PATH or R_HOME variables not set properly. The confusing thing is that some parts of rpy2 correctly guess the...
@ghost `package_revise` is safe, because it allows concurrent calls, whereas `resource_create` may result in data loss if other actions (including `package_revise`) are changing the dataset/package at the same time. [EDIT:...