Home>Article>Development Tools> How to set up python environment in VScode
vscode configures the Python development environment:
Step 1: Install Python
There are many tutorials on installing Python on the Internet. Just go directly to the official website to download and install.
Download link: https://www.python.org/
Step 2: Install vscode
The installation is very simple, just click on the installation file, and then keep clicking next. That's it. This software is free and does not require cracking.
Download address: https://code.visualstudio.com/
Step 3: Install the plug-in
As shown below, after installation, open the software and click on the bottom icon on the left , search for Python, select the first plugin in the list and click install to install the program.
Step 3: Open the working directory
As shown below, click the file icon on the left, then click the "Open Folder" button to select a folder as the working directory Directory, all new files will be stored in this directory.
Step 4: Add configuration
As shown below, select the third icon on the left, click "Add Configuration" to add the configuration file, and select Python options.
After selecting Python, the Python configuration file launch.json will be generated and added to the Python installation directory: , remember to use double inclined rods, otherwise an error will be reported.
Step 5: Add user settings
Click File->Prefrences->Settings to generate a "User Settings" file and fill in the Python installation Directory: , as shown in the figure below
Recommended learning:vscode tutorial
The above is the detailed content of How to set up python environment in VScode. For more information, please follow other related articles on the PHP Chinese website!