We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0f8fb93 + 1a851b8 commit 3844826Copy full SHA for 3844826
Orange/canvas/application/addons.py
@@ -890,17 +890,17 @@ def _find_conda(self):
890
return conda
891
892
def install(self, pkg, raise_on_fail=False):
893
- cmd = ["conda", "install", "--yes", "--quiet",
+ cmd = [self.conda, "install", "--yes", "--quiet",
894
self._normalize(pkg.name)]
895
run_command(cmd, raise_on_fail=raise_on_fail)
896
897
def upgrade(self, pkg, raise_on_fail=False):
898
- cmd = ["conda", "upgrade", "--yes", "--quiet",
+ cmd = [self.conda, "upgrade", "--yes", "--quiet",
899
900
901
902
def uninstall(self, dist, raise_on_fail=False):
903
- cmd = ["conda", "uninstall", "--yes",
+ cmd = [self.conda, "uninstall", "--yes",
904
self._normalize(dist.project_name)]
905
906
0 commit comments