Sublime Forum

Some application Nothing showing on console after new build

#1

Dear support,

i need your help on this topic i had issue with new build on virtual environment (RadioConda based on anaconda) it is works on cmd fine and other ide but i like to use sublime, i did (Tools > Build> new bulid with below code and i save it as RadioConda.sublime-build) the i try to use the new bulid it can run some applcation but for some library like matplotlib does not work please your support.

{

"cmd": ["C:/ProgramData/radioconda/python.exe","-u", "$file"], 

"selector": "source.python", 

"file_regex": "^\\s*File \"(...*?)\", line ([0-9]*)" 

}

0 Likes

#2

Please be more precise than “does not work”. What happens instead, what errors are shown, etc.

0 Likes

#3

hellow there thanks for your repaly and this is more explanation my case in the picture :framed_picture:

0 Likes

#4

Your program doesn’t display any output. What did you expect it to do?

0 Likes

#5

i expect it to works like the right side from terminal

0 Likes

#6

See the post linked below; in a nutshell, if you want your build to be able to spawn a window, it needs to use shell_cmd and not cmd to do it. You will need to adjust your build accordingly.

0 Likes