美文网首页
通过pip查看可以安装的一些库版本

通过pip查看可以安装的一些库版本

作者: 郭海杰 | 来源:发表于2019-08-03 13:08 被阅读0次
    
    (venv) C:\Flie\new>python
    Python 3.7.4 (tags/v3.7.4:e09359112e, Jul  8 2019, 19:29:22) [MSC v.1916 32 bit (Intel)] on win32
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import pip._internal
    >>> print(pip._internal.pep425tags.get_supported())
    [('cp37', 'cp37m', 'win32'), ('cp37', 'none', 'win32'), ('py3', 'none', 'win32'), ('cp37', 'none', 'any'), ('cp3', 'none', 'any'), ('py37', 'none', 'any'), ('py3', 'none', 'any'), ('py36', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]
    >>>
    

    相关文章

      网友评论

          本文标题:通过pip查看可以安装的一些库版本

          本文链接:https://www.haomeiwen.com/subject/nqdjdctx.html