anaconda安装labelme后,windows中标注文件linux中打不开的问题

修改文件

找到your anaconda path/envs/labelme/lib/python3.6/site-packages/labelme/label_file.py文件
在111行处加入一下代码:
if '\\' in data["imagePath"] and os.name == 'posix':
   data["imagePath"]=data["imagePath"].replace('\\','/')
if '/' in data["imagePath"] and os.name == 'nt':
   data["imagePath"]=data["imagePath"].replace('/','\\')

代码片段截图:
anaconda安装labelme后,windows中标注文件linux中打不开的问题_第1张图片

你可能感兴趣的:(conda,linux,python)