pip相关
pip
用于Python下载第三方依赖包
菜鸟教程:https://www.runoob.com/w3cnote/python-pip-install-usage.html
PyPI官网:https://pypi.org/
安装、卸载、查看、更新,相关博客:https://blog.csdn.net/weixin_43289135/article/details/120097579
更新pip
python -m pip install --upgrade pip
一键安装项目所需依赖包
将所需依赖包导出到文本文件
pip list --format=freeze > requirePackage.txt
将导出的文本文件中的依赖项批量安装
pip install -r requirePackage.txt
错误笔记
Failed building wheel for XXX
相关博客:https://blog.csdn.net/yuangan1529/article/details/116696624
ERROR: Could not build wheels for fasttext, which is required to install pyproject.toml-based projects
相关博客:https://blog.csdn.net/nyh670276894/article/details/135747778