--- a/src/eric7/Tools/TrayStarter.py Mon Jul 03 12:04:39 2023 +0200 +++ b/src/eric7/Tools/TrayStarter.py Mon Jul 03 15:25:10 2023 +0200 @@ -168,6 +168,11 @@ self.tr("Virtual Environments"), self.__startVirtualenvManager, ) + self.__menu.addAction( + EricPixmapCache.getIcon("pypi"), + self.tr("PyPI Package Management"), + self.__startPip, + ) self.__menu.addSeparator() self.__menu.addAction( @@ -370,6 +375,12 @@ """ self.__startProc("eric7_virtualenv.py") + def __startPip(self): + """ + Private slot to start the eric package manager (PyPI) window. + """ + self.__startProc("eric7_pip.py") + def __startWebBrowser(self): """ Private slot to start the eric web browser.