Python 三方库下载安装
1、在线安装
pip install pandas # 直接安装
python -m pip install pandas # 使用指定Python中的pip进行安装
pip install pandas==1.2.3 # 安装指定版本
pip install pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com # 指定安装源
2、三方库下载
pip download pandas # 直接下载
python -m pip download pandas # 使用指定Python中的pip进行下载
pip download pandas==1.2.3 # 下载指定版本
pip download pandas -i http://pypi.douban.com/simple --trusted-host pypi.douban.com # 指定下载源
pip download pandas -d [下载目录] # 指定下载目录
3、三方库离线安装
pip install xxx-pandas-xxx.whl # 直接安装本地包(安装单个文件)
python -m pip install xxx-pandas-xxx.whl # 使用指定Python中的pip进行安装本地包(安装单个文件)
pip install -r requirements.txt --no-index -f [安装包所在目录] # 根据requirements.txt文件进行批量安装
pip install --no-index --find-links=[安装包所在目录] xxx-pandas-xxx.whl # 根据依赖,安装目录下所有需要的文件