Let's talk about how to configure the python environment in vscode
How to configure the python environment in vscode? The following article will introduce to you how to configure the python environment in Visual Studio Code. I hope it will be helpful to you!
Preliminary configuration
Install python (It is recommended to install it directly in the system directory and check Select 'ADD TO PATH' to avoid unnecessary trouble)
Install Visual Studio Code (the official website speed is sometimes fast and sometimes slow, it is recommended to download by chance, or use a reliable ladder to download ). [Recommended study: "vscode introductory tutorial"]
-
Check whether python and VSC are installed
- python: In cmd or Enter python --version in the terminal. If the version number can be output, the installation is successful (the latest version: 3.9.1)
- pip: python's current mainstream package management tool. In the latest version, pip will be along with python. Install together and complete the system variable settings. Enter pip -V[–version] in cmd or terminal. If the version number can be correctly output, the installation is successful
1. Establish a virtual environment (venv)
The role of venv can be understood as a python environment established for a specific project, which can be understood as a child. When we develop this project, we only need to operate the venv. Problems with the venv will not have an impact on the overall situation. To create venv, you need:
1. Create a folder in the appropriate path (you may wish to set it to venv-demo)
2. Run terminal or cmd in the folder, Enter the following command
python -m venv env
Then a folder named env will be generated under the folder, which is the virtual environment generated for us .
3. Enter the following command in terminal or cmd
Set-ExecutionPolicy -Scope CurrentUser remotesigned
Set the current user to be able to run wps scripts .
You can also run wps as an administrator and remove the -Scope attribute to set all users to be able to run wps scripts (those previously set can ignore step 3)
4. Enter env folder, execute the following command
.\Scripts\activate
to open the virtual environment. Enter exit
to exit.
2. Configure pip
Due to well-known reasons, the installation speed of pip without modifying the source of pip in mainland China will be very impressive. So we need to configure pip in the virtual environment.
1. Under the premise of opening the virtual environment, enter pip config debug
to check whether there is a corresponding pip configuration file. We only need to create the pip configuration file in the virtual environment.
2. Create the pip.ini file in the env folder
3. Open the pip.ini file and make the following settings:
[global] index-url = https://mirrors.aliyun.com/pypi/simple/ [install] trusted-host = mirrors.aliyun.com
Many commercial companies and universities in China have established pip As for the mirror site, I personally think Alibaba is the best here. Set the index-url and trusted-host respectively, and run pip install [module_name]
and the download speed will be acceptable.
3. Set up VSC
Open the venv-demo folder with VSC
At this time VSC may remind you to install the pylint package, just install it
Click
ctrl shift p
to open the settings panel and searchPython:Select Interpreter
option, select python.exe of the virtual environment env as the interpreterAt this time click
ctrl~
Open the terminal, you can see that you have automatically entered the virtual environment of envCreate the demo.py file in venv-demo, write anything, and then enter
python demo.py
in the terminal. It can run normally and the configuration is successful.
For more knowledge about VSCode, please visit: vscode tutorial! !
The above is the detailed content of Let's talk about how to configure the python environment in vscode. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

An application that converts XML directly to PDF cannot be found because they are two fundamentally different formats. XML is used to store data, while PDF is used to display documents. To complete the transformation, you can use programming languages and libraries such as Python and ReportLab to parse XML data and generate PDF documents.

It is impossible to complete XML to PDF conversion directly on your phone with a single application. It is necessary to use cloud services, which can be achieved through two steps: 1. Convert XML to PDF in the cloud, 2. Access or download the converted PDF file on the mobile phone.

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

Use most text editors to open XML files; if you need a more intuitive tree display, you can use an XML editor, such as Oxygen XML Editor or XMLSpy; if you process XML data in a program, you need to use a programming language (such as Python) and XML libraries (such as xml.etree.ElementTree) to parse.

XML can be converted to images by using an XSLT converter or image library. XSLT Converter: Use an XSLT processor and stylesheet to convert XML to images. Image Library: Use libraries such as PIL or ImageMagick to create images from XML data, such as drawing shapes and text.

XML formatting tools can type code according to rules to improve readability and understanding. When selecting a tool, pay attention to customization capabilities, handling of special circumstances, performance and ease of use. Commonly used tool types include online tools, IDE plug-ins, and command-line tools.

To convert XML images, you need to determine the XML data structure first, then select a suitable graphical library (such as Python's matplotlib) and method, select a visualization strategy based on the data structure, consider the data volume and image format, perform batch processing or use efficient libraries, and finally save it as PNG, JPEG, or SVG according to the needs.
