0
Good afternoon,
Running the command below on the VSCODE terminal, it opens pycharm to execute such a command, not running on VSCODE itself.
I’ve already uninstalled the test pycharm. Then when executing the command it executes the code correctly, but when typing the answer, this terminal opened externally, is terminated.
Tried to make
python area_circulo_v3.py
?– Woss
You probably defined the
PyCharm
as the program that should open and/or run files.py
. If that really was it, you should locate the script you want to open with Vscode, right-click, click on the optionAbrir com
, and choose the programVSCode
. From that moment on, all scripts.py
will be opened byVSCode
.– Solkarped
You go in the folder where the.py file is and give
code .
that it will open that folder inside the visual studio and inside you can simply run the program. But you can just type in your terminal:python area_circulo_v3.py
and it will execute the code also instead of opening the pycharm.– LucasV75