src/eric7/CondaInterface/Conda.py

branch
eric7
changeset 9584
620d2ac049da
parent 9576
be9f8e7e42e0
child 9624
b47dfa7a137d
equal deleted inserted replaced
9583:b1951dd240e0 9584:620d2ac049da
615 Public method to update conda itself. 615 Public method to update conda itself.
616 616
617 @return flag indicating success 617 @return flag indicating success
618 @rtype bool 618 @rtype bool
619 """ 619 """
620 args = ["update", "--json", "--yes", "conda"] 620 args = [
621 "update",
622 "--json",
623 "--yes",
624 "--name",
625 "base",
626 "--channel",
627 "defaults",
628 "conda",
629 ]
621 630
622 dlg = CondaExecDialog("update", self.__ui) 631 dlg = CondaExecDialog("update", self.__ui)
623 dlg.start(args) 632 dlg.start(args)
624 dlg.exec() 633 dlg.exec()
625 ok, _ = dlg.getResult() 634 ok, _ = dlg.getResult()

eric ide

mercurial