--- a/src/eric7/CondaInterface/Conda.py Wed Dec 07 11:38:28 2022 +0100 +++ b/src/eric7/CondaInterface/Conda.py Wed Dec 07 11:38:48 2022 +0100 @@ -617,7 +617,16 @@ @return flag indicating success @rtype bool """ - args = ["update", "--json", "--yes", "conda"] + args = [ + "update", + "--json", + "--yes", + "--name", + "base", + "--channel", + "defaults", + "conda", + ] dlg = CondaExecDialog("update", self.__ui) dlg.start(args)