Normal,You will encounter this error when installing a Python package,This package must be a package containing C ++ code。
This is due to incompatibility after macOS update,In General,The maintainer of this package should already be compatible with this particular situation:
1 2 |
if platform.system() == 'Darwin': extra_compile_args += ['-mmacosx-version-min=10.7', '-stdlib=libc++'] |
So that it can be successfully compiled on macOS。
But if you are using PyPy,Maybe even if the maintainer includes this sentence,You can't succeed[……]