[Solved] Python3 Install cv2 Error: No module named ‘skbuild’

#Need to install scikit-build
pip install scikit-build

# After installing scikit-build, when you install opencv-python again, you get an error, probably because CMake is not installed, then install cmake again
pip install cmake

# finally install opencv-python again
pip install opencv-python

Similar Posts: