[Python Development Setup]Install Visual Studio Code

Karl Chen
2 min readApr 7, 2023

--

Although we have installed Python, we can start to write the Python code with a plain text editor directly. However, other IDE tools provide an efficient way to focus on the programming itself, such as Visual Studio Code, PyCharm, etc… Let’s start the installation of Visual Studio Code and enjoy the Python programming.

Install Visual Studio Code

  1. Visit the Visual Studio Code download page in your browser and download it.
  1. Use Finder to find the download folder and drag the Visual Studio Code.app from the zip file to the Application folder in Finder.

Install the Python extension

  1. Launch the Visual Studio Code by searching code in Spotlight.
  2. Search Python in Visual Studio Code Extensions view and install the extension published by Microsoft.

When the installation is complete. You can start to write your 1st Python program.

Create your 1st Python application

  1. Launch the Visual Studio Code and new a Python file.
  1. Type the 101 application in any programming language to say hello!!!
print("Hello, Python!!!")
  1. Save it as hello.py and run the program.

Start the 1st step for Python programming and enjoy it.

--

--