I have a virtual environment with exe file here:
“D:\Learning Flask\Flask beginner tutorials\env\Scripts\python3.6.exe”
After following tutorials it seems I need to go to build system -> New build system
And then change the build config file as follows:
{
“cmd”: [“D:\Learning Flask\Flask beginner tutorials\env\Scripts\python3.6.exe”, “-u” “$file”],
“file_regex”: “^[ ]File "(…?)”, line ([0-9]*)",
“selector”: “source.python”
}
After doing so, I then save as “test”,
and then access the “build system” menu once again, and select the “test” build.
Next, I try to run an open Python script with Ctrl +b but I get a “no build system” in the gray bar at bottom of screen.
How am I doing wrong with the config file?
Thank you.