skip to Main Content

As a beginner st python, i tried to print helloWorld using vsCODE, it did show the following error message……

PS C:Usersuser.idlerc> & c:/Users/user/.idlerc/.venv/Scripts/python.exe c:/Users/user/Desktop/PYTHON/firstProgram.py
No Python at '"C:Program FilesPython312python.exe'
PS C:Usersuser.idlerc> 

somebody tell me how to resolve this?

i tried printing a statement – hello world

it was no printed….it showed the comment -no python

2

Answers


  1. It is looking for Python on your system but can’t find it at C:Program FilesPython312python.exe

    I suggest you try re-installing Python. https://www.python.org/downloads/

    Login or Signup to reply.
  2. bro maybe there might be an issue with your Python installation or the configuration in Vs code. check python version. python3/python –version . also make sure that your virtualenvironments is active

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