如何使用Python的pip(以及为什么你需要它)
原文英文,约1100词,阅读约需4分钟。发表于: 。Python is one of the best languages for learning the ins and outs of programming. Not only is the language The post How To Use Python pip (and Why You Need To) appeared first on The New Stack.
Python是学习编程的最佳语言之一,pip是Python的软件包管理器,可以安装和管理Python软件包。pip连接到名为Python Package Index(PyPi)的在线软件包存储库,可以安装所需的依赖项。安装pip的方法很简单,可以从大多数Linux发行版的标准存储库中进行。使用pip可以通过命令行或requirements.txt文件安装软件包。还可以在虚拟环境中使用pip,以在隔离的环境中安装软件包。