Some errors about using python3.5 to invoke opencv3.3.1 on TX2

Hello!When I started programming with python3 on Jetson TX2(with Jetpack-3.3), I found that import cv2 did not work.I have tried some ways to fix it but in vain.I was kind of reluctant to remove OpenCV4Tegra and re-build OpenCV by myself.Can you give me some useful suggestions?

Hi,

The library installed by JetPack is C++ implementation.
Please remember to install the python wrapper for your use case:

sudo apt-get install python3-opencv

Thanks.