Why fatal error: 'yaml.h' file not found when installing PyYAML?

前端 未结 2 2104
你的背包
你的背包 2021-02-12 10:35

I\'m trying out downloading PyYAML and install it following the instructions here http://pyyaml.org/wiki/PyYAML

So I downloaded the ZIP package: http://pyyaml.org/downlo

2条回答
  •  离开以前
    2021-02-12 11:22

    In MacOS the following solved the problem:

    pip3 uninstall PyYaml
    pip3 install PyYaml==5.2
    

提交回复
热议问题