When I build the linux image with buildroot, I have enable the python3 and python zlib in the config like below:
BR2_PACKAGE_OPENCV3=y
BR2_PACKAGE_OPENCV3_LIB_PYTHON=y
BR2_PACKAGE_OPENCV3_LIB_IMGCODECS=y
BR2_PACKAGE_OPENCV3_LIB_IMGPROC=y
BR2_PACKAGE_OPENCV3_WITH_JPEG=y
BR2_PACKAGE_PYTHON3_ZLIB=y
Build is ok, and I can enter into python3, but the error "ModuleNotFoundError: No module named 'zlib' always happened when I import some package.
anyone know how to rolve it.
thanks.