使用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/