Python运行 import cv2 等报错 Illegal instruction (core dumped) 解决办法

import cv2 报错 Illegal instruction (core dumped)

nanopc-T4 开发板上安装好 opencv 后,import cv2 时 会报错 Illegal instruction (core dumped) ,是由于内核等问题导致的,通过多方查找资料,初步有了个解决方案。

  • 命令行运行
    命令行运行报错解决办法:

    运行 OPENBLAS_CORETYPE=ARMV8 python3

  • Python 文件运行
    .py 文件运行报错解决办法:

    • 终端运行 sudo gedit ~/.bashrcsudo vi ~/.bashrc
    • 末尾添加环境变量 export OPENBLAS_CORETYPE=ARMV8 ,保存并关闭
    • 终端运行 source ~/.bashrc

你可能感兴趣的:(杂七杂八事务所,python)