xserver にlinux brew をインストール
python3.8.4をインストール
opencv-python を pip でインストール
python3 起動後

> import cv2  
しかし
> mportError: libgthread-2.0.so.0: cannot open shared object file: No such file or directory

以下のインストール
brew install libgtk2.0-dev
brew install glib
brew install atk
brew install pango
brew install gdk-pixbuf
brew install gdk+

再度 python3 起動
> import cv2
しかし
>ImportError: libSM.so.6: cannot open shared object file: No such file or directory

以下のインストール
brew install libSM

再々度 python3 起動
> import cv2
>
無事起動