randy3k / Terminus

Bring a real terminal to Sublime Text

Home Page:https://packagecontrol.io/packages/Terminus

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[Fixed] activate a conda environment before calling Python

mrrezaie opened this issue · comments

Hi, in order to activate a Conda environment conda activate MyEnv followed by invoking iPython, just separate every word of the commands as strings and add && between the commands. This setting works for me (Windows 10) and I'm posting this for other users who need this.

"cmd": [
     "conda", "activate", "MyEnv",
     "&&",
     "ipython",
     ...
     ]