skip to Main Content

I’ve tried doing so much stuff, but nothing works.

My code and directory:

my code and directory

Terminal after I try running it:

terminal after i try running it

another attempt

I tried disabling some extensions. Nothing
I tried running the command in my terminal. Nothing.
I tried looking at other posts about it. Nothing.

2

Answers


  1. If you run the script from VSCode UI, you should see the output in OUTPUT tab. In your screenshot you are checking in TERMINAL

    output tab check

    Nonetheless, as others have mentioned, you can execute it through the TERMINAL as well, typing python hi.py

    Login or Signup to reply.
  2. You are not running your terminal in the same path where the file is located. The easiest way to go is to open the folder that contains your file using vscode. Right click on the folder and chose "Open with Code". Then your terminal will run there by default.

    Otherwise change the directory to the correct location using something likecd "OneDrive/documents/python stuff".

    Or specify the path of the file you are trying to run. Something like this:> python "/OneDrive/documents/python stuff/file_name.py"

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search