-
Notifications
You must be signed in to change notification settings - Fork 6
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
reticulate error on ubuntu #31
Comments
I have fixed it. It was not a bug. I have created a link for /usr/bin/python3 to /usr/local/bin/python, and use |
I'm sorry, I have another question. I used rchitect and httpgd to interact with R and view plot. The httpgd server started ok. However, only the first thumbnail of plot can display, the maximized plot can not display. The http server has no response. But, in radian, I input R code from command line, the plot can immediately displayed on web page. Can you help me to solve this problem. Thanks! To Reproduce import time
import rchitect
rchitect.init()
rchitect.rcall('library', 'reticulate')
rchitect.rcall('library', 'httpgd')
rchitect.rcall('hgd')
rchitect.rcall('hgd_browse')
rchitect.reval('x<-c(1,2,3,4,5,6); y<-c(4,5,6,7,8,9); plot(x,y)')
time.sleep(10) Environment OS: Windows 11 |
You will need to "process" the events using
|
Thank you so much. That works very well. |
Hi, and thanks a lot for this great library!
I used rchitect on ubuntu 22.04, and I encountered a problem. However, the code works well on Windows 11.
In 'R/data.R' file, I used
library(reticulate)
to load reticulate library. Could you help me. Thanks!The text was updated successfully, but these errors were encountered: