coscmd 报错 ImportError: cannot import name 'SafeConfigParser' from 'configparser'
Windows下通过Python安装coscmd,执行coscmd命令时报错
原因:本地Python装的是3.13.0版本,这个版本不支持SafeConfigParser这个类,源代码改为使用RawConfigParser
解决:到Python的安装路径下找到cos_cmd.py文件将SafeConfigParser替换为RawConfigParser(总共三处)
具体路径 Python\Lib\site-packages\coscmd
修正后执行命令