--- a/eric6/PipInterface/Pip.py Wed Sep 30 19:33:21 2020 +0200 +++ b/eric6/PipInterface/Pip.py Wed Sep 30 19:34:11 2020 +0200 @@ -206,19 +206,21 @@ return interpreter - def getVirtualenvNames(self, noRemote=False): + def getVirtualenvNames(self, noRemote=False, noConda=False): """ Public method to get a sorted list of virtual environment names. @param noRemote flag indicating to exclude environments for remote debugging @type bool + @param noConda flag indicating to exclude Conda environments + @type bool @return sorted list of virtual environment names @rtype list of str """ return sorted( e5App().getObject("VirtualEnvManager").getVirtualenvNames( - noRemote=noRemote)) + noRemote=noRemote, noConda=noConda)) def installPip(self, venvName, userSite=False): """