(This is my first post on the forums)
I am working in the unity ver. 2022.3.16f and am working on mlagents. I followed the entire code monkey tutorial and installed python3.7.9, ml agents 0.29 and I installed pytorch ver.1.7.1. then I ran mlagents-learn --help and the following message came at the last:
Torch Configuration:
–torch-device DEVICE
Settings for the default torch.device used in
training, for example, “cpu”, “cuda”, or “cuda:0”
(default: None)
And then I ran: mlagents-learn --run-id=test7
The following errors came:
Traceback (most recent call last):
File “C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.2544.0_x64__qbz5n2kfra8p0\lib\runpy.py”, line 193, in _run_module_as_main
“main”, mod_spec)
File “C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.7_3.7.2544.0_x64__qbz5n2kfra8p0\lib\runpy.py”, line 85, in _run_code
exec(code, run_globals)
File “C:\Users\Admin\My project (1)\mlvenv\Scripts\mlagents-learn.exe_main_.py”, line 7, in
File “c:\users\admin\my project (1)\mlvenv\lib\site-packages\mlagents\trainers\learn.py”, line 260, in main
run_cli(parse_command_line())
File “c:\users\admin\my project (1)\mlvenv\lib\site-packages\mlagents\trainers\learn.py”, line 256, in run_cli
run_training(run_seed, options, num_areas)
File “c:\users\admin\my project (1)\mlvenv\lib\site-packages\mlagents\trainers\learn.py”, line 89, in run_training
stats_writers = register_stats_writer_plugins(options)
File “c:\users\admin\my project (1)\mlvenv\lib\site-packages\mlagents\plugins\stats_writer.py”, line 47, in register_stats_writer_plugins
if ML_AGENTS_STATS_WRITER not in importlib_metadata.entry_points():
File “c:\users\admin\my project (1)\mlvenv\lib\site-packages\importlib_metadata_init_.py”, line 261, in eq
return self._key() == other._key()
AttributeError: ‘str’ object has no attribute ‘_key’
I don’t know what this means.