51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Python 编译错误 Unsupported compiler -- at least C++11 support is needed! 解决方案

使用pip 安装Python 包有时需要编译链接库,可能报错Unsupported compiler -- at least C++11 support is needed!,本文记录解决方案。

问题复现 {#问题复现}

我是在安装 pyaum包时遇到的错误:

问题原因 {#问题原因}

  • 输入gcc --version

    gcc没问题

  • 输入g++ --version

    说明 g++ 没有安装

解决方案 {#解决方案}

  • 把这 g++ 库装上:

参考资料 {#参考资料}



文章链接:
https://www.zywvvd.com/notes/coding/python/compile-error/compile-error/

赞(0)
未经允许不得转载:工具盒子 » Python 编译错误 Unsupported compiler -- at least C++11 support is needed! 解决方案