DDPG算法中AttributeError: module 'os' has no attribute 'add_dll_directory'
时间: 2023-11-16 10:05:28 浏览: 380
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
DDPG算法中AttributeError: module 'os' has no attribute 'add_dll_directory'是由于Python版本问题导致的。在Python3.8及以上版本中,os模块新增了add_dll_directory方法,而在Python3.7及以下版本中没有该方法。因此,如果你的Python版本低于3.8,就会出现该错误。解决方法是升级Python版本或者修改代码,避免使用add_dll_directory方法。
阅读全文