I have solved this problem.
I researched about this and found a report that several packages with Isaac depend on an instance of SimulationApp, and the dependent packages must be imported after the instance is created, or it will result in an ImportError.
Therefore, we edited the executable file tool/composer/main.py and changed it so that the SimulationApp instance is created first.
First, open the relevant file in an editor.
Add the following process to line 16
kit = SimulationApp()
Comment out line 52.
# self.sim_app = SimulationApp(config)kit = SimulationApp()
In this state, we have confirmed that the ImportError is no longer generated when the Tutorial command is executed.
Thanks.