You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When previous version of the tool is already installed in the environment, in some cases, it can broke the new installation.
107
+
1.When previous version of the tool is already installed in the environment, in some cases, it can broke the new installation.
108
108
If you get a directory/file not found error, try manually removing the previous tool version from your environment or install the tool using following command in Accuracy Checker directory instead of setup.py install:
109
109
110
110
```bash
111
111
pip install --upgrade --force-reinstall .
112
112
```
113
+
2. If `accuracy_check` command failed with following error:
114
+
```
115
+
from .cv2 import *
116
+
ImportError: libGL.so.1: cannot open shared object file: No such file or directory
117
+
```
118
+
try to uninstall `opencv-python` and install `opencv-python-headless` package. More detils about the error and approaches how to fix can be found [here](https://github.com/opencv/opencv-python/issues/370)
113
119
114
120
#### Running the Tool inside IDE for Development Purposes
0 commit comments