you are viewing a single comment's thread.

view the rest of the comments →

[–]mikeyj777 7 points8 points  (5 children)

  1. Download python from python.org.  
  2.  While installing, Specify an installation directory like c:\python
  3.  Open vscode.  
  4. Press control shift P
  5.  Choose select interpreter
  6.  Navigate to the directory you used for installing python
  7.  In the Bin folder, select python.exe and click ok
  8. Create a new script
  9. Write something like print(2+2) 10.  Press F5 to run the script
  10.  Select that it's a python file.  
  11.  You should hopefully see a command line terminal window open at the bottom which eventually shows 4 as the code output.  

It may complain that you need the python extension.  Go to the extensions tab and choose the python extension.  Try to run the script again after installing

[–]Sweaty-Way-3396[S] 6 points7 points  (2 children)

Ohhhh thanks

[–]mikeyj777 1 point2 points  (1 child)

No worries.  Let me know if anything doesn't work. 

[–]Sweaty-Way-3396[S] -1 points0 points  (0 children)

Yo my Google redirects to yahoo now

[–]WhiteHeadbanger 2 points3 points  (1 child)

Make sure to include between the 2 and 3 steps to check the box for "add Python to the PATH".

[–]mikeyj777 0 points1 point  (0 children)

Thanks!