Skip to content

Commit

Permalink
FIX-#2354: use conda activate instead of conda run (#2355)
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <anatoly.myachev@intel.com>
  • Loading branch information
anmyachev authored Nov 2, 2020
1 parent 11574a8 commit 5382769
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modin/experimental/cloud/rayscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,7 @@ def wrap_cmd(self, cmd: list):
[
"bash",
"-ic",
subprocess.list2cmdline(["conda", "run", "-n", "modin"] + cmd),
# workaround for https://github.com/conda/conda/issues/8385
subprocess.list2cmdline(["conda", "activate", "modin", "&&"] + cmd),
]
)

0 comments on commit 5382769

Please sign in to comment.