i need to connect pyRserve in iPython, but there is an error when i try to connect it. This is the error.
conn = pyRserve.connect()
And this is what i get:
RConnectionRefused: Connection denied, server not reachable or not accepting connections.
In the pyrserve manual are and advice to correct this, but i don't understand what i need to do. This is the advice (Note)
Note When a remote connection to Rserve should be opened, and pyRserve cannot connect to it, most likely Rserve only listens to it’s own internal network connection. To force Rserve accepting connections from other machines create a file called /etc/Rserv.conf and add at least the following line: remote enable Then restart Rserve.
So, i need to know how to implement the note and connect the Rserve in python
Thanks everyone