环境搭建问题(2):AttributeError: module 'pip' has no attribute 'pep425tags'

在使用命令:

import pip;print(pip.pep425tags.get_supported())

出现以下错误:

环境搭建问题(2):AttributeError: module 'pip' has no attribute 'pep425tags'_第1张图片

这是系统不同所造成的,解决方法如下

WIN32位的shell中输入:

import pip;print(pip.pep425tags.get_supported())

 WIN64位的shell中输入:

import pip._internal;print(pip._internal.pep425tags.get_supported())

参考文章:环境搭建问题(1):shell中出现module 'pip' has no attribute 'pep425tags'

你可能感兴趣的:(基础环境,Django)