IDEA导入第三方库时,报错AttributeError: module 'pip' has no attribute 'main'问题解决方法

一、错误原因:
由于pip-19.0.3中没有main方法,所有在使用Alt+回车导入包时报错
错误信息:AttributeError: module ‘pip’ has no attribute ‘main’
二、解决办法:
1、再不想回退pip版本的情况下,可进行如下操作;
2、在目录:“C:\Users\Administrator\.IntelliJIdea2017.2\config\plugins\python\helpers”下
找到:packaging_tool.py文件
3、修改该文件中的:def do_install(pkgs):和 def do_uninstall(pkgs):方法:

#**修改前为:**
def do_install(pkgs):
    try:
        import pip
    except ImportError:
        error_no_pip()
    return pip.main(['install'] + pkgs)

def do_uninstall(pkgs):
    try:
        import pip
    except ImportError:
        error_no_pip()
    return pip.main(['uninstall', '-y'] + pkgs)

#**修改后为:**
def do_install(pkgs):
    try:
        #import pip
        try:
            from pip._internal import main
        except Exception:
            from pip import main
    except ImportError:
        error_no_pip()
    return main(['install'] + pkgs)
 
def do_uninstall(pkgs):
    try:
        #import pip
        try:
            from pip._internal import main
        except Exception:
            from pip import main
    except ImportError:
        error_no_pip()
    return main(['uninstall', '-y'] + pkgs)

三、重新导入即可(Alt+回车)。

你可能感兴趣的:(AttributeError:,module,'pip',has,no,python)