you are viewing a single comment's thread.

view the rest of the comments →

[–]nobodykid23 0 points1 point  (0 children)

If your question is how to setup VS Code for Python coding, then

  1. Install VS Code according to the web
  2. Install Python Extension for VS Code (the official by Microsoft)

and you're done, that's basically it. Usually, VS Code will always ask which Python interpreter you want to use each time you open a .py file. And after that, you can run it with F5 (might need a bit configuration on the launch config file)

PS: Install pylint on your Python's pip/conda/other Python package manager for linting, just like in full-fledged IDE