LabelMe安装踩坑
LabelMe安装踩坑
win11+python3.12,pycharm venv 安装:
pip install labelme
,启动labelme报错:
ImportError: DLL load failed while importing onnxruntime_pybind11_state:
降级numpy,降级onnxruntime
pip install "numpy<2.0"
pip install onnxruntime==1.18.0
再次cmd运行labelme
成功!