Home > Enterprise >  I'm trying to run a simple print script in Visual Studio Code with Python, but nothing shows up
I'm trying to run a simple print script in Visual Studio Code with Python, but nothing shows up

Time:10-31

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.

CodePudding user response:

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"

CodePudding user response:

I think you have to run the file through python hi.py to show the output. Did you try it?

CodePudding user response:

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

  • Related