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() |