diff -r 2f5c951bdf14 -r bc5aa4cda1ee UI/UserInterface.py --- a/UI/UserInterface.py Sun Feb 03 16:59:36 2019 +0100 +++ b/UI/UserInterface.py Mon Feb 04 20:03:11 2019 +0100 @@ -981,6 +981,14 @@ self.debugViewer, UI.PixmapCache.getIcon("debugViewer.png"), self.tr("Debug-Viewer")) + # Create the conda package manager + logging.debug("Creating Conda Package Manager...") + from CondaInterface.CondaPackagesWidget import CondaPackagesWidget + self.condaWidget = CondaPackagesWidget() + self.rightSidebar.addTab( + self.condaWidget, UI.PixmapCache.getIcon("miniconda.png"), + self.tr("Conda")) + if Preferences.getUI("ShowCooperation"): # Create the chat part of the user interface logging.debug("Creating Chat Widget...")