Skip to content

Commit

Permalink
FIX-#2354: use conda activate instead of conda run
Browse files Browse the repository at this point in the history
Signed-off-by: Anatoly Myachev <[email protected]>
  • Loading branch information
anmyachev committed Nov 2, 2020
1 parent 5251135 commit 712894d
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 712894d

Please sign in to comment.