07-25-2019, 09:18 AM
I've encountered a problem that some API call are not working on Ubuntu from Python. There is a code, which works correctly on Windows and doesn't work at all on Ubuntu 18.04.2.
First of all, it is not possible to launch RoboDK programmatically from Python code. It's just hanging terminal and nothing happens, even no error code or so. The only way is to launch RoboDK manually with .sh on desktop.
The second problem is that render disabling is not working. Am using such code:
It's working on Windows, but no at all on Ubuntu. In Ubuntu viewport remains working. So all actions are being showed in viewport. Since I am running quite huge amount of simulation I would like to speed up process as much as possible and this problem is making linux-setup useless.
First of all, it is not possible to launch RoboDK programmatically from Python code. It's just hanging terminal and nothing happens, even no error code or so. The only way is to launch RoboDK manually with .sh on desktop.
The second problem is that render disabling is not working. Am using such code:
Code:
RDK = Robolink()
RDK.Render(False)
It's working on Windows, but no at all on Ubuntu. In Ubuntu viewport remains working. So all actions are being showed in viewport. Since I am running quite huge amount of simulation I would like to speed up process as much as possible and this problem is making linux-setup useless.