Import cv2 doesn't work for Python 3 after successfully installing OpenCV 4.6.0 and Ubuntu 22.04.1

I am using Ubuntu 22.04 and anacondna3. The python version in virtual environment is 3.10. Both Cmake, make -j6 and make install did not throw any errors. I am getting no module “cv2” error. Please help

My CMake command is below.
CMakeCache.txt,
CMakeVars.txt

cmake \
-D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_INSTALL_PREFIX=/usr/local \
-D WITH_QT=OFF \
-D WITH_CUDA=ON \
-D WITH_CUDNN=ON \
-D WITH_CUBLAS=ON \
-D WITH_TBB=ON \
-D OPENCV_ENABLE_NONFREE=ON \
-D CUDA_ARCH_BIN=7.5 \
-D OPENCV_EXTRA_MODULES_PATH=/home/suresh/Downloads/opencv_contrib-4.6.0/modules \
-D BUILD_EXAMPLES=ON \
-D WITH_OPENJPEG=OFF \
-D WITH_IPP=OFF \
-D PYTHON3_INCLUDE_DIR=/home/suresh/anaconda3/envs/cv46/include/python3.10 \
-D PYTHON3_LIBRARY=/home/suresh/anaconda3/lib/libpython3.so \
-D PYTHON3_PACKAGES_PATH=/home/suresh/anaconda3/envs/cv46/lib/python3.10/site-packages \
-D PYTHON3_EXECUTABLE=/home/suresh/anaconda3/envs/cv46/bin/python3 \
-D INSTALL_PYTHON_EXAMPLES=ON \ 
-D OPENCV_GENERATE_PKGCONFIG=ON \
..

The pkg-config shows opencv4 version correctly

(cv46) ➜  build pkg-config --modversion opencv4
4.6.0

When I try the below python command, I am getting No module named “cv2” error.

(cv46) ➜  build python3 -c "import cv2; print(cv2.__version__)"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ModuleNotFoundError: No module named 'cv2'

please don’t just slap random tags on your question

Do check cv2 folder is available in /usr/local/lib/python3.10/dist-packages/cv2.

If the cv2 folder is not available then it displays so.

Also, check after the CMake command you get this:

Python 3:

Interpreter:                 /usr/bin/python3.4 (ver 3.4.3)
Libraries:                   /usr/lib/x86_64-linux-gnu/libpython3.4m.so (ver 3.4.3)
numpy:                       /usr/lib/python3/dist-packages/numpy/core/include (ver 1.8.2)
packages path:               lib/python3.4/dist-packages