【老版本】pip64位的要在后面pip后面加上._internal,才可以。 代码语言:javascript 复制 >>>importpip._internal>>>print(pip._internal.pep425tags.get_supported())[('cp36','cp36m','win32'),('cp36','none','win32'),('py3','none','win32'),('cp36','none','any'),('cp3','none',...
>>>import pip; print(pip.pep425tags.get_supported()) 1. 2. 结果报错:AttributeError: module ‘pip’ has no attribute 'pep425tags’ AMD64 import pip._internal print(pip._internal.pep425tags.get_supported()) 1. 2. Win32 import pip print(pip.pep425tags.get_supported()) 1. 2. 查看这...
我下载了个32位的,查找发现了它的位置,然后直接导入它就行了。 >>>importpip._internal.pep425tagsase>>>print(e.get_supported())[<cp36-cp36m-win32 @36751360>,<cp36-abi3-win32 @36751040>,<cp36-none-win32 @36751080>,<cp35-abi3-win32 @36752000>,<cp34-abi3-win32 @36752200>,<cp33-a...
在shell中输入import pip; print(pip.pep425tags.get_supported())可以获取到pip支持的文件名还有版本 然而,很悲催。。。出现了 然后,google了一下,解决了~ 因为我的pip的版本是V10,应该使用下面的命令: import pip._internal; print(pip._internal.pep425tags.get_supported()) 嘿嘿~~...
网上很多说pip.pep425tags.get_supported(),其实这是32位的语法。 >>> import pip>>> print(pip.pep425tags.get_supported()) 现在的电脑大多数都是64位的。 感谢洋子的分享:最新的 64 位查看方法。pip 老的查看方法前段时间更新后就不能用了。
网上很多说pip.pep425tags.get_supported(),其实这是32位的语法。 >>> import pip >>> print(pip.pep425tags.get_supported()) 1. 2. 现在的电脑大多数都是64位的。 感谢洋子的分享:最新的 64 位查看方法。pip 老的查看方法前段时间更新后就不能用了。 ...
这个错误很常见,解决方法是改名,首先要获得在你的机器的平台上的合法名称: import pip pip.pep425tags.get_supported() 结果可能如下: 上图的意思就是说对于python3.6(cp36)来说,合法的名字只能是这些,比如: ‘cp36_cp36m_macosx_10_12_x86_64.whl’ ‘cp36_cp36m_macosx_10_12_intel.whl’ ‘cp36_cp3...
print(pip._internal.pep425tags.get_supported()) 在这里插入图片描述 直接导包报错...不知道那位童鞋是怎么搞定的.. 最后在stackoverflow找的解决办法 # 先安装wheel库 pip install wheel # 查看支持的版本 import wheel.pep425tags as w print(w.get_supported(archive_root="")) ...
()function inside pip'spep425tags.py, I don't think there's any other way for the user to get this information, since you can really only get it empirically by running the code. A command like this should be relatively simple because it would just be a matter of callingget_supported(...
self.config['name'], self.config.get('version', None))File "C:\Users\16027\AppData\Roaming\Python\Python37\site-packages\pbr\ packaging.py", line 862, in get_version version = _get_version_from_pkg_metadata(package_name)File "C:\Users\16027\AppData\Roaming\Python\Python37\...