之前在網上找了各種資料,cmd安裝yaml,網上大部分寫的都是pip install yaml
![]()
可是,執行完就變成Could not find a version that satisfies the requirement yaml <from versions:>No matching distribution found for yaml.

但是執行pip install pyyaml

就可以成功。
后來才知道,python3.X只能使用pip install pyyaml 來安裝。
想要看安裝是否成功,輸入import pyyaml即可。
