Python Forum
A trouble with VS Code
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
A trouble with VS Code
#11
(Sep-05-2019, 12:31 PM)Truman Wrote: When I go to Terminal>Run task it opens the box "select the task to run". What should I do then?
I never use this,you should install Code Runner,i have more about this in my tutorial.

When installed open setting,search code-runner.executorMap.
"code-runner.executorMap": {
        "javascript": "node",
        "java": "cd $dir && javac $fileName && java $fileNameWithoutExt",
        "c": "gcc -o $fileNameWithoutExt $fullFileName && $fileNameWithoutExt",
        "cpp": "g++ -o $fileNameWithoutExt $fullFileName && $fileNameWithoutExt",
        "objective-c": "cd $dir && gcc -framework Cocoa $fileName -o $fileNameWithoutExt && $dir$fileNameWithoutExt",
        "php": "php",
        "python": "$pythonPath $fullFileName",
        "perl": "perl",
        "ruby": "ruby",
        "go": "go run",
        "lua": "lua",
Set "python": "$pythonPath $fullFileName",
With this command will also switch automatically if change Python interpreter(down in left corner).

Now get a button to run code or right click run code.
[Image: CQMz7n.png]
Reply


Messages In This Thread
A trouble with VS Code - by Truman - Sep-01-2019, 11:41 PM
RE: A trouble with VS Code - by Larz60+ - Sep-02-2019, 04:23 AM
RE: A trouble with VS Code - by Truman - Sep-02-2019, 03:36 PM
RE: A trouble with VS Code - by Truman - Sep-03-2019, 08:02 PM
RE: A trouble with VS Code - by Larz60+ - Sep-04-2019, 10:24 PM
RE: A trouble with VS Code - by Truman - Sep-04-2019, 11:14 PM
RE: A trouble with VS Code - by Larz60+ - Sep-05-2019, 03:36 AM
RE: A trouble with VS Code - by snippsat - Sep-05-2019, 12:02 PM
RE: A trouble with VS Code - by Truman - Sep-05-2019, 12:31 PM
RE: A trouble with VS Code - by perfringo - Sep-05-2019, 12:48 PM
RE: A trouble with VS Code - by snippsat - Sep-05-2019, 02:11 PM
RE: A trouble with VS Code - by Larz60+ - Sep-05-2019, 02:13 PM
RE: A trouble with VS Code - by Truman - Sep-05-2019, 02:53 PM
RE: A trouble with VS Code - by snippsat - Sep-05-2019, 04:02 PM
RE: A trouble with VS Code - by Truman - Sep-05-2019, 04:52 PM
RE: A trouble with VS Code - by snippsat - Sep-05-2019, 05:21 PM
RE: A trouble with VS Code - by Truman - Sep-05-2019, 05:27 PM
RE: A trouble with VS Code - by adt - Sep-08-2019, 03:58 PM
RE: A trouble with VS Code - by snippsat - Sep-09-2019, 05:40 AM
RE: A trouble with VS Code - by adt - Sep-09-2019, 08:34 AM
RE: A trouble with VS Code - by snippsat - Sep-09-2019, 12:22 PM
RE: A trouble with VS Code - by adt - Sep-09-2019, 04:03 PM
RE: A trouble with VS Code - by snippsat - Sep-09-2019, 09:50 PM
RE: A trouble with VS Code - by Truman - Sep-21-2019, 10:05 PM
RE: A trouble with VS Code - by Truman - Sep-25-2019, 10:23 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020