pip 命令批量安装python包
1.PyPI : Python Package Index,the default repository(仓库) of Python packages for Python community that includes frameworks, tools and, libraries.
Python developers can install and use packages in the Python application
2.PIP :Package Installer for Python. It is used to install packages from Python Package Index(PyPI) and other indexes.
3.利用anaconda平台的conda命令创建一个虚拟环境(如test)的时候,一般默认安装以下包:类似pip和python这类很重要的包,在新建虚拟环境的时候就会安装
4.使用pip命令在指定的虚拟环境中批量安装package
首先创建一个requirements.txt文件(如在桌面上创建),记录好自己需要的包名,还可以指定版本
其次进入指定的虚拟环境(如test):conda activate test
然后进入requirements.txt所在的目录:cd C:\users\sgj\desktop
在Windows powershell中pwd命令(pwd是print work directory的缩写)确认当前工作目录是 C:\users\sgj\desktop
在Windows powershell中使用dir命令或者get-childitem命令打印当前工作目录中所有文件
确认当前工作目录、requirements.txt、所在虚拟环境是test(目标虚拟环境)
pip install --requirements requirements.txt
或者pip install -r requirements.txt
事实上,requirements.txt文件的文件名是可以任意更改的
成功安装指定的包和及其依赖
使用conda list 查看当前虚拟环境中所有的包