【前端后端环境】

article/2025/6/7 14:36:49

学习视频【带小白做毕设02】从0开始手把手带你做Vue框架的快速搭建以及项目工程的讲解

C:\Users\Again>java -version
java version "21.0.1" 2023-10-17 LTS
Java(TM) SE Runtime Environment (build 21.0.1+12-LTS-29)
Java HotSpot(TM) 64-Bit Server VM (build 21.0.1+12-LTS-29, mixed mode, sharing)C:\Users\Again>javac -version
javac 21.0.1C:\Users\Again>node -v
v20.18.1C:\Users\Again>npm -v
10.8.2C:\Users\Again>git --version
git version 2.47.1.windows.2C:\Users\Again>python --version
Python 3.11.5
C:\Users\Again>mysql --version
mysql  Ver 8.0.28 for Win64 on x86_64 (MySQL Community Server - GPL)C:\Users\Again>mvn -v
Apache Maven 3.9.9 (8e8579a9e76f7d015ee5ec7bfcdc97d260186937)
Maven home: D:\apache-maven-3.9.9-bin\apache-maven-3.9.9
Java version: 21.0.1, vendor: Oracle Corporation, runtime: C:\Program Files\Java\jdk-21
Default locale: zh_CN, platform encoding: UTF-8
OS name: "windows 11", version: "10.0", arch: "amd64", family: "windows"

我的开发环境配置全记录(2025年更新)

记录当前主力开发机的软件配置,方便日后回溯和团队共享环境。

核心开发工具

Java 生态系统

  • JDK 21.0.1 LTS (Oracle HotSpot)
    用途:Java/Spring后端开发、JVM系语言运行环境
    特点:长期支持版本,含G1 GC优化和新特性预览
  • Apache Maven 3.9.9
    用途:Java项目构建依赖管理
    配置:自定义本地仓库路径(显示为Windows路径)

JavaScript/Node.js 体系

  • Node.js v20.18.1 (Current)
    用途:前端工程化、服务端JavaScript运行时
  • npm 10.8.2
    配套:新版扁平化依赖树结构

数据库工具

  • MySQL 8.0.28 Community Edition
    用途:关系型数据库服务
    注意:Win64原生支持,含窗口函数等高级特性

辅助工具链

版本控制

  • Git 2.47.1 (Windows版)
    配置:已识别为Windows 11平台

脚本语言

  • Python 3.11.5
    用途:自动化脚本/机器学习辅助

环境详情

# 系统基础信息
OS: Windows 11 (10.0) 64位
Locale: zh_CN.UTF-8# 验证命令(与博文开头输出一致)
java -version
javac -version
node -v
npm -v
git --version
python --version
mysql --version
mvn -v

配置建议

  1. 版本控制:建议将JDK和Node.js版本通过.nvmrc/.sdkmanrc管理
  2. MySQL升级:当前8.0.28可考虑升级到最新8.0.x获得安全更新
  3. 环境变量:确认JAVA_HOME=C:\Program Files\Java\jdk-21已配置

小技巧:使用mvn -v可快速验证JAVA_HOME配置是否正确


Vue.js 的安装步骤

Vue CLI 是官方提供的脚手架工具,可快速搭建标准化项目结构。

Microsoft Windows [版本 10.0.26100.4061]
(c) Microsoft Corporation。保留所有权利。C:\Users\Again>node -v
v20.18.1C:\Users\Again>npm -v
10.8.2C:\Users\Again>npm install -g @vue/cli
npm error code CERT_HAS_EXPIRED
npm error errno CERT_HAS_EXPIRED
npm error request to https://registry.npm.taobao.org/@vue%2fcli failed, reason: certificate has expired
npm error A complete log of this run can be found in: C:\Users\Again\AppData\Local\npm-cache\_logs\2025-06-01T01_49_45_231Z-debug-0.logC:\Users\Again>npm config set registry https://registry.npmjs.orgC:\Users\Again>npm install -g @vue/cli
npm warn deprecated urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
npm warn deprecated resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
npm warn deprecated source-map-url@0.4.1: See https://github.com/lydell/source-map-url#deprecated
npm warn deprecated source-map-resolve@0.5.3: See https://github.com/lydell/source-map-resolve#deprecated
npm warn deprecated rimraf@2.6.3: Rimraf versions prior to v4 are no longer supported
npm warn deprecated @babel/plugin-proposal-nullish-coalescing-operator@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
npm warn deprecated @babel/plugin-proposal-class-properties@7.18.6: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.
npm warn deprecated @babel/plugin-proposal-optional-chaining@7.21.0: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
npm warn deprecated inflight@1.0.6: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
npm warn deprecated glob@7.2.3: Glob versions prior to v9 are no longer supported
npm warn deprecated rimraf@3.0.2: Rimraf versions prior to v4 are no longer supported
npm warn deprecated apollo-server-errors@3.3.1: The `apollo-server-errors` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.
npm warn deprecated apollo-reporting-protobuf@3.4.0: The `apollo-reporting-protobuf` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/usage-reporting-protobuf` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.
npm warn deprecated apollo-datasource@3.3.2: The `apollo-datasource` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.
npm warn deprecated apollo-server-env@4.2.1: The `apollo-server-env` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/utils.fetcher` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.
npm warn deprecated apollo-server-plugin-base@3.7.2: The `apollo-server-plugin-base` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.
npm warn deprecated apollo-server-types@3.8.0: The `apollo-server-types` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.
npm warn deprecated subscriptions-transport-ws@0.11.0: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws    For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
npm warn deprecated apollo-server-core@3.13.0: The `apollo-server-core` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.
npm warn deprecated apollo-server-express@3.13.0: The `apollo-server-express` package is part of Apollo Server v2 and v3, which are now end-of-life (as of October 22nd 2023 and October 22nd 2024, respectively). This package's functionality is now found in the `@apollo/server` package. See https://www.apollographql.com/docs/apollo-server/previous-versions/ for more details.
npm warn deprecated vue@2.7.16: Vue 2 has reached EOL and is no longer actively maintained. See https://v2.vuejs.org/eol/ for more details.added 827 packages in 2mC:\Users\Again>vue creat vue
Usage: vue <command> [options]Options:-V, --version                              output the version number-h, --help                                 display help for commandCommands:create [options] <app-name>                create a new project powered by vue-cli-serviceadd [options] <plugin> [pluginOptions]     install a plugin and invoke its generator in an already created projectinvoke [options] <plugin> [pluginOptions]  invoke the generator of a plugin in an already created projectinspect [options] [paths...]               inspect the webpack config in a project with vue-cli-serviceserve                                      alias of "npm run serve" in the current projectbuild                                      alias of "npm run build" in the current projectui [options]                               start and open the vue-cli uiinit [options] <template> <app-name>       generate a project from a remote template (legacy API, requires@vue/cli-init)config [options] [value]                   inspect and modify the configoutdated [options]                         (experimental) check for outdated vue cli service / pluginsupgrade [options] [plugin-name]            (experimental) upgrade vue cli service / pluginsmigrate [options] [plugin-name]            (experimental) run migrator for an already-installed cli plugininfo                                       print debugging information about your environmenthelp [command]                             display help for commandRun vue <command> --help for detailed usage of given command.Unknown command creat.Did you mean create?C:\Users\Again>vue create vue
?  Your connection to the default npm registry seems to be slow.Use https://registry.npmmirror.com for faster installation? YesVue CLI v5.0.8
? Please pick a preset: Manually select features
? Check the features needed for your project: Babel, Linter
? Choose a version of Vue.js that you want to start the project with3.x
> 2.x
C:\Users\Again>vue create vueVue CLI v5.0.8
? Please pick a preset: Manually select features
? Check the features needed for your project: Babel, Linter
? Choose a version of Vue.js that you want to start the project with
> 3.x2.x
C:\Users\Again>vue create vueVue CLI v5.0.8
? Please pick a preset: Manually select features
? Check the features needed for your project: Babel, Router
? Choose a version of Vue.js that you want to start the project with 2.x
? Use history mode for router? (Requires proper server setup for index fallback in production) Yes
? Where do you prefer placing config for Babel, ESLint, etc.? In package.json
? Save this as a preset for future projects? Yes
? Save preset as: default🎉  Preset default saved in C:\Users\Again\.vuercVue CLI v5.0.8
✨  Creating project in C:\Users\Again\vue.
🗃  Initializing git repository...
⚙️  Installing CLI plugins. This might take a while...added 810 packages in 42s104 packages are looking for fundingrun `npm fund` for details
🚀  Invoking generators...
📦  Installing additional dependencies...added 6 packages in 4s104 packages are looking for fundingrun `npm fund` for details
⚓  Running completion hooks...📄  Generating README.md...🎉  Successfully created project vue.
👉  Get started with the following commands:$ cd vue$ npm run serveC:\Users\Again>cd vueC:\Users\Again\vue>npm run serve> vue@0.1.0 serve
> vue-cli-service serveINFO  Starting development server...DONE  Compiled successfully in 6108ms                                                                          10:23:52App running at:- Local:   http://localhost:8080/- Network: http://192.168.0.104:8080/Note that the development build is not optimized.To create a production build, run npm run build.

ctrl + 鼠标左键 点击 这个上面的链接 http://localhost:8080/
在这里插入图片描述

vue

Project setup

npm install

Compiles and hot-reloads for development

npm run serve

Compiles and minifies for production

npm run build

Customize configuration

See Configuration Reference.

以下是这段内容的中文翻译:

Vue 项目设置

npm install       # 安装项目依赖

开发环境编译及热重载

npm run serve     # 启动开发服务器

生产环境编译及压缩

npm run build     # 构建生产版本

自定义配置
请查看配置参考文档。

说明:

  • npm install:安装项目所需的所有依赖包(基于 package.json 中的配置)。

package.json

  {"name": "vue","version": "0.1.0","private": true,"scripts": {"serve": "vue-cli-service serve","build": "vue-cli-service build"},"dependencies": {"core-js": "^3.8.3","vue": "^2.6.14","vue-router": "^3.5.1"},"devDependencies": {"@vue/cli-plugin-babel": "~5.0.0","@vue/cli-plugin-router": "~5.0.0","@vue/cli-service": "~5.0.0","vue-template-compiler": "^2.6.14"},"browserslist": ["> 1%","last 2 versions","not dead"]
}
  • npm run serve:启动本地开发服务器,支持代码热更新(修改文件后自动刷新页面),适用于开发阶段。
  • npm run build:将项目代码打包为生产环境版本,会自动压缩代码并优化资源,输出文件位于 dist/ 目录。
  • 配置参考:如需自定义webpack、Babel等配置,可通过创建 vue.config.js 文件实现,详见 Vue CLI 官方文档。

在这里插入图片描述
以下是对该Vue项目工程结构的介绍:

根目录相关文件

  • .idea:这是IntelliJ IDEA等JetBrains系列IDE用于存储项目配置信息的目录,如项目设置、运行配置等,一般不需要手动修改,且版本控制时通常会将其添加到.gitignore中排除。
  • node_modules:存放项目通过npmyarn等包管理器安装的所有依赖包及模块,是项目运行依赖的基础,体积较大,版本控制时一般也会排除。
  • package.json:项目的核心配置文件之一,记录项目基本信息(名称、版本、作者等),定义项目依赖(开发依赖和生产依赖),还包含各种脚本命令(如npm run serve 对应的启动命令等)。
  • package - lock.json:锁定项目依赖的具体版本信息,确保团队成员安装的依赖版本一致,避免因依赖版本差异导致的问题。
  • README.md:项目说明文档,用于向他人介绍项目功能、使用方法、安装步骤等重要信息。
  • .gitignore:指定在使用Git进行版本控制时,哪些文件或目录不需要被追踪和提交,提升版本管理效率。
  • babel.config.js:Babel配置文件,Babel用于将ES6+等新语法转换为浏览器能识别的旧语法,保证项目在不同浏览器环境下正常运行。
  • jsconfig.json:用于为VSCode等编辑器提供JavaScript项目的配置信息,辅助代码智能提示、路径解析等功能。
  • vue.config.js:Vue项目的自定义配置文件,可用于配置webpack相关设置、代理服务器、插件等,不配置时会使用默认配置。

public 目录

  • favicon.ico:网站图标,在浏览器标签页、书签等位置显示,用于标识网站。
  • index.html:项目的入口HTML文件,是浏览器加载的第一个页面,页面中会通过script标签引入打包后的JavaScript代码,link标签引入样式等。

src 目录(项目源码核心目录)

  • assets:用于存放静态资源,如图片、字体、样式文件等。像logo.png就是项目中用到的图片资源,可在组件中通过相对路径引用。
  • components:存放Vue组件的目录,组件是Vue项目构建UI的基本单元,可复用。HelloWorld.vue就是一个自定义组件,通常包含模板(HTML结构)、脚本(JavaScript逻辑)和样式(CSS样式)部分。
  • router:路由相关配置目录。index.js文件一般用于定义路由规则,配置不同URL路径对应的组件渲染,实现单页面应用(SPA)的页面切换功能。
  • views:存放视图组件的目录,视图组件一般是与路由对应的页面级组件,AboutView.vueHomeView.vue分别对应关于页面和主页的组件。
  • App.vue:项目的根组件,整个Vue应用从这里开始渲染,一般包含应用的整体布局结构,会引入其他子组件。
  • main.js:项目的入口文件,主要作用是创建Vue实例,引入根组件App.vue,并挂载到index.html中的指定DOM元素上,同时也会进行一些全局配置,如引入路由、状态管理等。

安装 element

https://element.eleme.cn/#/zh-CN/component/installation

PS C:\Users\Again\vue> npm i element-ui -Sup to date, audited 826 packages in 3s104 packages are looking for fundingrun `npm fund` for details10 vulnerabilities (2 low, 8 moderate)To address issues that do not require attention, run:npm audit fixTo address all issues possible (including breaking changes), run:npm audit fix --forceSome issues need review, and may require choosing
a different dependency.Run `npm audit` for details.
PS C:\Users\Again\vue> 

在这里插入图片描述


http://www.hkcw.cn/article/BaoaCaEXnB.shtml

相关文章

机器学习:决策树和剪枝

本文目录&#xff1a; 一、决策树基本知识&#xff08;一&#xff09;概念&#xff08;二&#xff09;决策树建立过程 二、决策树生成&#xff08;一&#xff09;ID3决策树&#xff1a;基于信息增益构建的决策树。&#xff08;二&#xff09;C4.5决策树&#xff08;三&#xff…

【Vmware】虚拟机安装、镜像安装、Nat网络模式、本地VM8、ssh链接保姆篇(图文教程)

文章目录 Vmware下载Vmware安装镜像安装虚拟机安装网络模式Nat模式设置ssh链接 更多相关内容可查看 Vmware下载 官网下载地址&#xff1a;https://vmoc.waltzsy.com/?bd_vid8868926919570357435#goods Vmware安装 以管理员身份运行 弹框如下&#xff0c;点击下一步 我同意&…

移动端测试岗位高频面试题及解析

文章目录 一、基础概念二、自动化测试三、性能测试四、专项测试五、安全与稳定性六、高级场景七、实战难题八、其他面题 一、基础概念 移动端测试与Web测试的核心区别&#xff1f; 解析&#xff1a;网络波动&#xff08;弱网测试&#xff09;、设备碎片化&#xff08;机型适配&…

什么是“草台班子”?

“草台班子”是一个常用的汉语俗语&#xff0c;其含义在不同语境下略有差异&#xff0c;核心特点是强调组织或团队的非专业性、临时性和不规范性。以下从原意、引申义、常见用法三方面展开说明&#xff1a; 一、原意&#xff1a;传统戏曲中的流动演出团体 起源&#xff1a; 最…

无人机避障——感知部分(Ubuntu 20.04 复现Vins Fusion跑数据集)胎教级教程

硬件环境&#xff1a;NVIDIA Jeston Orin nx 系统&#xff1a;Ubuntu 20.04 任务&#xff1a;跑通 EuRoC MAV Dataset 数据集 展示结果&#xff1a; 编译Vins Fusion 创建工作空间vins_ws # 创建目录结构 mkdir -p ~/vins_ws/srccd ~/vins_ws/src# 初始化工作空间&#xf…

AI网校平台开发探索:集成直播、考试题库、白板互动的教育系统源码

当下&#xff0c;如何构建一个真正符合“未来教育”形态的网校平台&#xff0c;成为越来越多教育机构与技术团队关注的焦点。本篇文章&#xff0c;笔者想对教育系统源码的理解与实践&#xff0c;尤其是围绕直播、录播、考试题库与白板互动等核心功能的整合探索。 一、教育行业…

景区停车预警系统:从检测到疏导,告别拥堵!

节假日景区门口堵成长龙&#xff0c;游客找车位难&#xff0c;管理压力大&#xff1f;一套智能停车预警疏导系统是关键。4G地磁检测技术&#xff0c;是构建这套系统的稳定基石。 一、车位实时检测&#xff1a;数据精准是基础 知道车位有没有车、有多少空位是第一步。4G地磁埋…

仓颉项目调试配置与多文件场景下的问题解析

1. 调试配置指南 在 VS Code 中配置好仓颉开发工具链后&#xff0c;只需按下 F5 或 Fn F5 即可启动调试。 在 CodeArts IDE for Cangjie 中&#xff0c;需先通过右上角的 编辑配置 -> 新增配置项 -> 选择 Cangjie (cjdb) Debug -> 选择 launch 模式 -> 点击 确认…

【北邮 操作系统】第十三章 I/O系统

最后一章啦&#xff0c;完结撒花hhh 一、I/O设备的概念和分类 【1】I/O设备的概念&#xff1a;I/0设备就是可以将数据输入到计算机&#xff0c;或者可以接收计算机输出数据的外部设备&#xff0c;属于计算机中的硬件部件。 【2】I/O设备的类型 设备按传输速率分类&#xff…

机器学习——放回抽样

为了构建树集成模型&#xff0c;需要一种叫做有放回采样的技术。 以4个标记为演示&#xff0c;分别是红色、黄色、绿色和蓝色&#xff0c;用一个黑色的袋子把这四个标记的例子放进去&#xff0c;然后从这个袋子里有放回地抽取四次&#xff0c;抽出一个标记&#xff0c;结果是绿…

组相对策略优化(GRPO):原理及源码解析

文章目录 PPO vs GRPOPPO的目标函数GRPO的目标函数KL散度约束与估计ORM监督RL的结果PRM监督RL的过程迭代RL算法流程 GRPO损失的不同版本GRPO源码解析 DeepSeekMath: Pushing the Limits of Mathematical Reasoning in Open Language Models PPO vs GRPO PPO的目标函数 J P P O…

黑马Java面试笔记之 集合篇(算法复杂度+ArrayList+)

一. 算法复杂度分析 1.1 时间复杂度 时间复杂度分析&#xff1a;来评估代码的执行耗时的 常见的复杂度表示形式 常见复杂度 1.2 空间复杂度 空间复杂度全称是渐进空间复杂度&#xff0c;表示算法占用的额外存储空间与数据规模之间的增长关系 二. 数组 数组&#xff08;Array&a…

AI数据集构建:从爬虫到标注的全流程指南

AI数据集构建&#xff1a;从爬虫到标注的全流程指南 系统化学习人工智能网站&#xff08;收藏&#xff09;&#xff1a;https://www.captainbed.cn/flu 文章目录 AI数据集构建&#xff1a;从爬虫到标注的全流程指南摘要引言流程图&#xff1a;数据集构建全生命周期一、数据采…

飞算 JavaAI 赋能老项目重构:破旧立新的高效利器

许多企业的 Java 老项目面临着代码陈旧、架构落后、维护困难等问题。老项目重构势在必行&#xff0c;却又因庞大的代码量、复杂的业务逻辑让开发团队望而却步。 老项目重构困境重重 传统的 Java 老项目往往在长期的迭代和维护中积累了诸多问题。一方面&#xff0c;代码质量堪…

服装产品属性描述数据集(19197条),AI智能体知识库收集~

今天再来分享一个关于服装产品属性描述数据集&#xff01;可用户AI训练&#xff0c;AI智能体知识库&#xff01; 一、数据集介绍 电商文案优化 / 属性智能识别 / 服装产品描述数据训练首选资源 1、数据规模&#xff1a; 共计 19197 条 2、文件格式&#xff1a; Excel格式 3、字…

Java程序员学从0学AI(四)

一、前言 在上一篇文章中&#xff0c;我们学习了SpringAI种的Advisor组件&#xff0c;这个是一个类似AOP的&#xff0c;用于增强大模型调用的组件。今天我们继续学习新的组件提示词&#xff1a;Prompts 二、Prompts 1、简介 提示词是我们和大模型交互的入口&#xff0c;我们…

从 iPhone 备份照片: 保存iPhone图片的5种方法

随着智能手机越来越融入我们的生活&#xff0c;我们的照片已成为我们设备上最有价值的数据形式之一。然而&#xff0c;iPhone内部存储空间仍然有限&#xff0c;因此我们需要将iPhone中的照片备份到另一个地方&#xff0c;以释放空间并确保珍贵的图像记忆的安全。阅读本指南&…

AU3110 10W、7.5V至18V、无电感器、立体声D类扬声器放大器(替代TPA3110)

1.特性 ● 输出功率 - 2 x 11W 12V,6Ω,THDN 1% - 2 x 15.5W 12V,4Ω,THDN 1% - 1 x 21W 12V,4Ω,THDN 1% - THDN< 0.04% 12V,6Ω,1W, 1kHz ● 供电电压范围 - 7.5V-18V 低导通阻抗 RDs(on):140mΩ ● 固定增益&#xff1a; - 26dB ● 低静态功耗 - > 90% Class D效率 ●…

系统设计面试利器:The System Design Primer开源项目介绍

引言 在当今软件工程领域&#xff0c;系统设计能力已经成为评判一名高级工程师技术水平的重要标准。无论是顶级科技公司的技术面试&#xff0c;还是实际工作中设计大规模分布式系统&#xff0c;掌握系统设计知识都是必不可少的技能。今天我们要深入探讨的是 GitHub 上一个备受…

一周学会Pandas2之Python数据处理与分析-Pandas2数据绘图与可视化

锋哥原创的Pandas2 Python数据处理与分析 视频教程&#xff1a; 2025版 Pandas2 Python数据处理与分析 视频教程(无废话版) 玩命更新中~_哔哩哔哩_bilibili Pandas 集成了 Matplotlib&#xff0c;提供了简单高效的绘图接口&#xff0c;使数据可视化变得直观便捷。本指南将详…