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
I am the author of radian, I was reported that radian doesn't work with new version of reticulate, see randy3k/radian#489.
After poking around, it seems that it is caused by this line
GILScope scope;
in main_process_python_info_unix. AFAICT, It is trying to initialize python by running reticulate:::initialize_python()
but initialize_python calls py_discover_config which calls main_process_python_info and main_process_python_info_unix.
It creates a dead loop.
I tried commented out this line // GILScope scope;, and it seems that it is now back in working, but not sure if GIL is needed in this function.
The text was updated successfully, but these errors were encountered:
I am the author of radian, I was reported that radian doesn't work with new version of reticulate, see randy3k/radian#489.
After poking around, it seems that it is caused by this line
in
main_process_python_info_unix
. AFAICT, It is trying to initialize python by runningreticulate:::initialize_python()
but
initialize_python
callspy_discover_config
which callsmain_process_python_info
andmain_process_python_info_unix
.It creates a dead loop.
I tried commented out this line
// GILScope scope;
, and it seems that it is now back in working, but not sure if GIL is needed in this function.The text was updated successfully, but these errors were encountered: