vscode-code-runner Questions
6
Solved
I'm using the newest version of Visual Studio Code and Python 3.6 (64 bit) on Windows 10.
I have the "Python" extension installed (the one made by Microsoft).
Every time I try to run a si...
Macule asked 24/9, 2019 at 18:6
2
I am trying to run a simple program "primeRange.cpp" using Code Runner extension available for VSCode.
I have selected my default terminal as git bash in VSCode, but when I hit Run on to...
Hubbs asked 3/7, 2020 at 18:38
12
Solved
I just installed python on VS Code and I can't run any python code using python command.
python command:
Running the code seems to run python command by default and it does not recognize it.
When I...
Nursemaid asked 14/9, 2018 at 12:59
7
Solved
I'm running a python flask server locally by clicking the run button in VS Code (provided by the Code Runner extension).
How do I stop the server without closing and restarting VS Code?
Alkene asked 24/9, 2019 at 1:2
2
Solved
I'm trying to use C++20 in VS Code with the Code Runner extension, which allows me to run code using ctrl+alt+n.
I have installed MinGW64 through the MSYS2 installer.
My compiler version is 12.0.2....
Hie asked 30/3, 2023 at 19:47
8
Solved
So, basically the Code Runner in Visual Studio Code can run in the integrated terminal. How can I make it to run in external terminal, which is command prompt because I need to present my program's...
Knackwurst asked 3/10, 2019 at 14:42
2
Solved
I'm using Visual Studio Code for Mac, running extension CodeRunner.
I've got a simple program:
using System;
namespace HelloWorldApplication {
class HelloWorld {
static void Main(string[] args) ...
Jehoshaphat asked 20/8, 2018 at 3:39
2
So.. whenever i try running Python codes in Vs code the output isn't shown in terminal part but the output part, can someone tell me how to make the output visible in terminal part plss
Genesia asked 17/8, 2022 at 17:30
8
Solved
I am trying to use the newer version of Python but when I type:
import sys
print sys.version_info
I get back:
sys.version_info(major=2, minor=7, micro=1, releaselevel='final', serial=0)
In the te...
Planar asked 5/11, 2013 at 19:50
2
Solved
I have a cpp project with multiple classes and headers. I was trying to make it compile and run using tasks and lunch.json but I gave up. I realized that a while ago I had a problem with Python int...
Burushaski asked 25/12, 2019 at 1:26
7
I'm using VS Code on a Mac to write Python code. I've created a virtual environment named 'venv' inside my project folder and opened VS Code in my project folder. I can see the venv folder in the E...
Strachan asked 18/6, 2019 at 15:57
3
Solved
balance = 100
print('Current Balance: ', balance)
while balance > 0:
print('1. WITHDRAW')
print('2. DEPOSIT')
choice = input("Select an option... ")
if (choice == 1):
print('1'...
Schizopod asked 15/9, 2021 at 2:8
6
I just started learning programming and I installed Visual Studio Code to write javascript in.
I installed the Code Runner extension, to help me run my code.
Whenever I try to run my code it says...
Steck asked 8/7, 2017 at 7:1
4
Solved
When I execute Run Code in selection mode, there is a temp file called tempCodeRunnerFile.go will appear in the folder. How can I avoid this file appear in the project?
Kathrinekathryn asked 26/7, 2020 at 8:8
0
To clarify I set up the .env file for environment variables correctly and when I run the code either via the built-in terminal (default play button) or to output via the Code Runner plugin, the att...
Diachronic asked 20/4, 2022 at 18:23
7
Solved
I have scriptcs and coderunner installed on Visual Studio Code. When I run a simple program that includes Console.WriteLine("Test") I don't see any output. The program seems to run successfully and...
Lenardlenci asked 5/4, 2017 at 16:49
2
Solved
I just re-installed my VSCode for some reason and after downloading the Code Runner extension, it is processing all the commands in the OUTPUT window instead of CMD in the Terminal...
I am compilin...
Interbedded asked 29/7, 2020 at 7:36
8
I can't get Code Runner extension to work with virtualenvs. Whenever I try to run code that imports a library that is installed only in the virtualenv and not in the global Python installation I ge...
Manipular asked 21/6, 2018 at 10:59
3
Solved
I have installed Visual Studio Code 1.23.1 and added extensions - Python, Code Runner.
With Code Runner, now I can see the Run Code symbol (triangle) and on highlighting it, I see the shortcut Ctr...
Colous asked 4/6, 2018 at 21:47
1
© 2022 - 2024 — McMap. All rights reserved.