4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pip3 installしたらCould not find a version that satisfies the requirementとなったときの対応方法

Posted at

事象 : 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
4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?