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
Just adding these imports leads to an exception after my agent program has successfully executed and is about to terminate which looks like this [the number in Thread-10 varies between executions]:
Exception in thread Thread-10:
Traceback (most recent call last):
File "/usr/lib/python3.8/threading.py", line 932, in _bootstrap_inner
self.run()
File "/usr/lib/python3.8/threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "/home/user/.local/lib/python3.8/site-packages/ai2thor/controller.py", line 782, in _start_unity_thread
raise Exception("command: %s exited with %s" % (command, returncode))
Exception: command: ['/home/user/mitibm/AI2Thor_MCS/MCS-AI2-THOR-Unity-App-v0.1.0.x86_64', '-screen-fullscreen', '0', '-screen-quality', '3', '-screen-width', '600', '-screen-height', '400.0'] exited with -9
I'm not quite sure why this happens or how I can resolve this. Do you have any suggestions how to fix this or further insights into what causes this? I'm on Julia 1.5.1, Python 3.8.2, Ubuntu 20.04 and running this through VSCode with the Julia extension (running via Ctrl+5).
Thank you in advance.
The text was updated successfully, but these errors were encountered:
I should add that MCS-AI2-THOR-Unity-App-v0.1.0.x86_64 as the name implies is a Unity 3D environment that is called from Julia via PyCall. I assume that this threading error somehow relates to simultaneous threading for ROS and Unity which are launched from the same Julia program.
I use RobotOS in my SLAM module which I use from an agent module with the following imports:
Just adding these imports leads to an exception after my agent program has successfully executed and is about to terminate which looks like this [the number in Thread-10 varies between executions]:
I'm not quite sure why this happens or how I can resolve this. Do you have any suggestions how to fix this or further insights into what causes this? I'm on Julia 1.5.1, Python 3.8.2, Ubuntu 20.04 and running this through VSCode with the Julia extension (running via Ctrl+5).
Thank you in advance.
The text was updated successfully, but these errors were encountered: