base环境绘图常用包
📅 2026/7/22 8:18:45
👁️ 阅读次数
📝 编程学习
conda install -n base -c conda-forge numpy pandas scipy matplotlib pillow openpyxl requests tqdm pyyaml ipython jupyterlab rich packaging -y或者
python -m pip install --prefer-binary numpy pandas scipy matplotlib Pillow openpyxl requests tqdm PyYAML ipython jupyterlab rich packaging| 软件包 | 用途 |
|---|---|
numpy | 数组、矩阵和基础数值计算 |
pandas | CSV、Excel 和表格数据处理 |
scipy | 科学计算、优化、统计 |
matplotlib | 基础绘图 |
pillow | 图片读取、缩放、裁剪和保存 |
openpyxl | 读写.xlsx文件 |
requests | HTTP 下载和接口请求 |
tqdm | 进度条 |
pyyaml | YAML 配置文件 |
ipython | 更方便的交互式 Python |
jupyterlab | Notebook 和数据分析环境 |
rich | 终端彩色输出、表格和进度显示 |
packaging | 版本号与包版本判断 |
conda install -n base -c conda-forge seaborn scikit-learn statsmodels sympy plotly xlrd xlsxwriter beautifulsoup4 lxml -y或者
python -m pip install --prefer-binary seaborn scikit-learn statsmodels sympy plotly xlrd XlsxWriter beautifulsoup4 lxmlseaborn:统计图;scikit-learn:传统机器学习;statsmodels:回归、时间序列和计量分析;sympy:符号计算;plotly:交互式绘图;xlrd:读取旧版.xls;xlsxwriter:生成格式丰富的 Excel;beautifulsoup4、lxml:HTML/XML 解析。
编程学习
技术分享
实战经验