PyYAML安装失败

安装时报错: AttributeError: cython_sources
报错原因:it’s the new release of cython 3.0.0 that create the issue
解决办法:pip install "cython<3.0.0" wheel && pip install pyyaml==5.4.1 --no-build-isolation
参考:Docker-compose no longer building image (AttributeError: cython_sources) - Stack Overflow