I encountered several issues while attempting to use the record_data.py script for data recording on a Linux system. Below are the specific problems:
-
Import Error in tcp_control.py:
The line from .devices import gamepad, phyphox in tcp_control.py results in an import error because there is no definition for phyphox in the corresponding .devices folder.
-
Unexpected Exit in record_data.py:
The record_data.py script seems to be an incorrect version. There is a suspicious exit() statement at line 22, which might be affecting its functionality.
-
AttributeError: 'Box' object has no attribute 'mj_load':
After commenting out the above two issues, I encountered this error: AttributeError: 'Box' object has no attribute 'mj_load'. Could this error be related to an incomplete implementation or a missing dependency?
Could you please help in resolving these issues? Let me know if additional information is needed.
Thank you!
I encountered several issues while attempting to use the record_data.py script for data recording on a Linux system. Below are the specific problems:
Import Error in
tcp_control.py:The line from .devices
import gamepad, phyphoxintcp_control.pyresults in an import error because there is no definition for phyphox in the corresponding .devices folder.Unexpected Exit in
record_data.py:The record_data.py script seems to be an incorrect version. There is a suspicious
exit()statement at line 22, which might be affecting its functionality.AttributeError: 'Box' object has no attribute 'mj_load':After commenting out the above two issues, I encountered this error:
AttributeError: 'Box' object has no attribute 'mj_load'. Could this error be related to an incomplete implementation or a missing dependency?Could you please help in resolving these issues? Let me know if additional information is needed.
Thank you!