LoginSignup
27
14

More than 3 years have passed since last update.

get_supportedに躓いたのでその解決方法

Posted at

環境

pip 20.1
python 3.7.3

概要

pipが対応しているcpを知りたかったけど

from pip._internal.pep425tags import get_supported
get_supported()

じゃ動かなかった。
試行錯誤した結果、

from pip._internal.utils.compatibility_tags import get_supported
get_supported()

で動いた。

27
14
1

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
27
14