Configuring Python and VSCode Environment

In the workplace, handling large amounts of data is inevitable. If it is just data processing within a workbook, many problems can actually be solved using macros (VB). However, there are now too many files to process at work, which requires using Python for operations. With domestic AI models like DeepSeek, Kimi, Qianwen, and Doubao, conventional code basically does not need to be written by humans anymore; you just need to tell the AI your requirements.

Next, I will discuss the installation and usage of Python and VSCode, along with cloud storage attachments, all for free, a benefit for beginners.

1. Download the Python file and install it

1) Open the link:

Link: https://pan.quark.cn/s/9e42ec2cd51e

Extraction code: YbEU

1) Create a new folder named Python on the D drive and store Python and VSCode in it.

Configuring Python and VSCode Environment

2) Click to install.

Configuring Python and VSCode Environment

3) Select the checkbox and then click INSTALL NOW.

Configuring Python and VSCode Environment

4) Click “Yes” to proceed with the installation.

Configuring Python and VSCode Environment

5) Click close, installation successful.

Configuring Python and VSCode Environment

6) Verify if the installation was successful.

Press Win + R, type cmd, and hit enter;

Type: python –version

Type: pip –version

Configuring Python and VSCode Environment

2. Download VSCode and install it

1) Double-click.

Configuring Python and VSCode Environment

2) Check the box and proceed to the next step.

Configuring Python and VSCode EnvironmentConfiguring Python and VSCode EnvironmentConfiguring Python and VSCode EnvironmentConfiguring Python and VSCode EnvironmentConfiguring Python and VSCode EnvironmentConfiguring Python and VSCode Environment

3. Call Python in VSCode and run “hello, world”

1) Install the Chinese language pack.

Configuring Python and VSCode Environment

2) Select change language and restart.

Configuring Python and VSCode Environment

3) Install the Python extension.

Configuring Python and VSCode Environment

4) Create a folder to store your code.

Configuring Python and VSCode Environment

5) Name it demo.

Configuring Python and VSCode Environment

6) Select trust all.

Configuring Python and VSCode Environment

7) Create a Python file.

Configuring Python and VSCode Environment

8) Enter print(“hello, world!”).

Configuring Python and VSCode Environment

9) Save the file and run it.

Configuring Python and VSCode Environment

Ok, start your Python journey.

Configuring Python and VSCode Environment

Leave a Comment