How to execute this sublime file in windows

Hi
In this video instructor had run a single sublime file in cmd. But to execute this file’s first code of a file in jupyter notebook must be combined with sublime file’s code to run it. But as I can see here instructor has used another way to run a single sublime file in cmd & automatically outputs of the required files are fetched and desired sublime file namely interactive_plot.py runs without the need to combine it with entire code. So how can I do this in windows cmd as instructor has done this in mac ??

Thank You

hey @pasta ,
in your cmd, just move to the directory in which your code is placed .
for example , path to your code is C://files//file.py

so in cmd, just use the below commands :

cd C://files
python files.py

your code will run perfectly unless there are some errors in your code file.

I hope this would have resolved your doubt.
Thank You and Happy Learning :slightly_smiling_face: