1. 程式人生 > >解決pycharm AttributeError: module 'pip' has no attribute 'main'問題

解決pycharm AttributeError: module 'pip' has no attribute 'main'問題

開啟安裝檔案下PyCharm 2017.3.2\helpers\packaging_tools.py

找到do_install方法

修改如下:

def do_install(pkgs):
    try:
        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:
        try:
            from pip._internal import main
        except Exception:
            from pip import main
    except ImportError:
        error_no_pip()
    return main(['uninstall', '-y'] + pkgs)

注意返回值去掉pip.

還有注意空格和tab的區別

之後就可以安裝了