Home > Development Tools > VSCode > body text

A brief analysis of three methods of importing python libraries in the vscode environment

青灯夜游
Release: 2022-12-15 21:28:25
forward
4506 people have browsed it

How to import python library in vscode environment? The following article will introduce to you three methods of importing python libraries in vscode. I hope it will be helpful to you!

A brief analysis of three methods of importing python libraries in the vscode environment

[Recommended learning: vscode tutorial, Programming teaching]

If vscode storage location and code storage When the positions are inconsistent, I personally recommend the first method

Method 1: Configure in the vscode environment

The steps are as follows

1. Open vscode and run a string of codes. The specific installation path of python will appear below.

A brief analysis of three methods of importing python libraries in the vscode environment

That is c here The address of the disk (the address of the d disk behind is the save address of my running code, regardless of

intercept the previous part, that is, C:\Users\Rover\AppData\Local\Programs\Python\Python38- 32

2. Open the folder at the corresponding address on the computer, find the Scripts folder, enter it, and you will find a pip.exe, which is the tool used for installation.
Then copy and change Folder address: C:\Users\Rover\AppData\Local\Programs\Python\Python38-32\Scripts

A brief analysis of three methods of importing python libraries in the vscode environment
A brief analysis of three methods of importing python libraries in the vscode environment

##3. Open with win r cmd, enter -cd C:\Users\Rover\AppData\Local\Programs\Python\Python38-32\Scripts and enter the folder

A brief analysis of three methods of importing python libraries in the vscode environment

4. Install python here -pptx as an example, enter -pip install python-pptx (replace with any library name

A brief analysis of three methods of importing python libraries in the vscode environment##5. After the automatic download is successful, the following prompt will appear

End hereA brief analysis of three methods of importing python libraries in the vscode environment

Extension:

He reminded me to upgrade pip, enter the commandpython -m pip install --upgrade pipor python.exe -m pip install --upgrade pip Then

Enter the command: A brief analysis of three methods of importing python libraries in the vscode environment

Success!A brief analysis of three methods of importing python libraries in the vscode environment

Method 2: Import directly into vscode Enter in the console

pip install option

(write the imported library name, such as import here option)

A brief analysis of three methods of importing python libraries in the vscode environment

Method 3: Use anaconda to import

    Refer to this article Article
  • Installing python library through anaconda

  • For more related knowledge about VSCode, please visit:
vscode basic tutorial

!

The above is the detailed content of A brief analysis of three methods of importing python libraries in the vscode environment. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]
Latest issues
Popular Tutorials
More>
Latest downloads
More>
web effects
Website source code
Website materials
Front end template
About us Disclaimer Sitemap
PHP Chinese website:Public welfare online PHP training,Help PHP learners grow quickly!