1526 """ |
1526 """ |
1527 try: |
1527 try: |
1528 pip = ericApp().getObject("Pip") |
1528 pip = ericApp().getObject("Pip") |
1529 except KeyError: |
1529 except KeyError: |
1530 # Installation is performed via the plug-in installation script. |
1530 # Installation is performed via the plug-in installation script. |
1531 from eric7.PipInterface.Pip import Pip # __IGNORE_WARNING_I101__ |
1531 from eric7.PipInterface.Pip import Pip # __IGNORE_WARNING_I-101__ |
1532 |
1532 |
1533 pip = Pip(self) |
1533 pip = Pip(self) |
1534 pip.installPackages(packages, interpreter=PythonUtilities.getPythonExecutable()) |
1534 pip.installPackages(packages, interpreter=PythonUtilities.getPythonExecutable()) |
1535 |
1535 |
1536 |
1536 |
1537 # |
1537 # |
1538 # eflag: noqa = M801 |
1538 # eflag: noqa = M-801 |