方法一:无镜像安装

  • pip install 库名

pip安装python第三方库 - 图1

方法二:镜像安装

  • pip install 库名 -i 源地址
  • 国内镜像源
    1. 清华大学: http://pypi.tuna.tsinghua.edu.cn/simple
    2. 豆瓣:http://pypi.douban.com/simple/
    3. 阿里云:http://mirrors.aliyun.com/pypi/simple/

pip安装python第三方库 - 图2

方法三:一劳永逸式镜像安装

  • %appdata%
  • 新建pip文件夹,并在文件夹中新建pip.ini配置文件,在pip.ini配置文件添加以下信息:
    1. [global]
    2. timeout = 6000
    3. index-url = https://pypi.tuna.tsinghua.edu.cn/simple
    4. trusted-host = pypi.tuna.tsinghua.edu.cn

pip安装python第三方库 - 图3 pip安装python第三方库 - 图4 pip安装python第三方库 - 图5 pip安装python第三方库 - 图6

方法四:批量安装

  • 批量安装是通过使用pycharm来进行的,操作步骤如下:
  • 第一步:在工程文件的根目录新建txt文件,如product.txt(文件名可自定义),填写需要安装的库名
  • 在终端terminal中输入:pip install -r product.txt

pip安装python第三方库 - 图7 pip安装python第三方库 - 图8 pip安装python第三方库 - 图9