事象 : PyYAMLをインストールしようとしたら怒られた
$ pip3 install pyyml
Collecting pyyml
Could not find a version that satisfies the requirement pyyml (from versions: )
No matching distribution found for pyyml
原因 : ライブラリ名はpyyml
ではなくて PyYAML
だから
すごく残念な原因でした。
対応方法 : ライブラリ名を正しく書く
$ pip3 install PyYAML
Collecting PyYAML
Downloading https://files.pythonhosted.org/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz (270kB)
100% |████████████████████████████████| 276kB 1.1MB/s
Installing collected packages: PyYAML
Running setup.py install for PyYAML ... done
Successfully installed PyYAML-3.13