andyzeng / visual-pushing-grasping

Train robotic agents to learn to plan pushing and grasping actions for manipulation with deep reinforcement learning.
http://vpg.cs.princeton.edu/
BSD 2-Clause "Simplified" License
898 stars 315 forks source link

Errors occurred in creating your own test cases in the simulation #31

Closed DKurome closed 5 years ago

DKurome commented 5 years ago

Connected to simulation. Traceback (most recent call last): File "create.py", line 30, in test_case_file_name = raw_input("Enter the name of the file: ") # test-10-obj-00.txt NameError: name 'raw_input' is not defined

st2yang commented 5 years ago

raw_input is only available in python2, try to use input instead