pip install命令安装扩展库整理

作者:linda公馆 时间:2021-10-13 21:49:14 

pip install命令用于安装扩展库,由于安装扩展库需要从国外网站下载,速度较慢,可以使用-i选项设置临时使用国内的镜像网站。

命令格式:

pip install -i 镜像地址 包名
例如:
pip install -i http://pypi.douban.com/simple/ django

常用国内镜像地址:

清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云:https://mirrors.aliyun.com/pypi/simple/
豆瓣网:https://pypi.douban.com/simple/
中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/

使用pip install命令时,如果出现“WARNING: The repository located at pypi.douban.com is not a trusted or secure host and is being ignored. If this repository is available via HTTPS we recommend you use HTTPS instead, otherwise you may silence this warning and allow it anyway with ‘–trusted-host pypi.douban.com'.”安装错误问题:


pip install命令安装扩展库整理

解决办法:

(1)可以使用参数–trusted-host指定可信任的主机
pip install -i http://pypi.douban.com/simple django --trusted-host=pypi.douban.com


pip install命令安装扩展库整理

安装成功后,可以用pip list查看包列表验证一下。


pip install命令安装扩展库整理

(2)不用参数–trusted-host,把http换成https。
pip install -i https://pypi.douban.com/simple django

试一下,先删除已安装的django包
pip uninstall django


pip install命令安装扩展库整理
pip install命令安装扩展库整理

安装成功。

来源:https://blog.csdn.net/qq_40078436/article/details/114238908

标签:python,pip
0
投稿

猜你喜欢

  • 给我一面国旗 python帮你实现

    2022-04-06 07:23:32
  • Python下的常用下载安装工具pip的安装方法

    2021-08-31 05:05:35
  • OpenCV形状检测的示例详解

    2023-11-11 06:17:14
  • MySQL如何快速创建800w条测试数据表

    2024-01-19 09:27:28
  • 基于K-Means聚类算法演示及可视化展示

    2023-02-08 16:01:39
  • 详解git reset 加不加 --hard的区别

    2022-04-03 06:45:13
  • python闭包和装饰器你了解吗

    2022-01-11 00:46:02
  • golang 实现struct、json、map互相转化

    2024-02-15 12:30:40
  • Python中的sys.stdout.write实现打印刷新功能

    2022-01-17 14:51:50
  • pyqt5 实现 下拉菜单 + 打开文件的示例代码

    2023-12-17 09:20:28
  • Mysql查询表中最小可用id值的方法

    2024-01-27 02:31:29
  • 浅谈Python 字符串格式化输出(format/printf)

    2021-04-27 12:59:01
  • sqlserver 三种分页方式性能比较[图文]

    2011-09-30 11:16:20
  • JS+CSS实现过渡特效

    2024-05-02 16:14:18
  • Python格式化日期时间操作示例

    2022-04-23 23:07:19
  • 使用动画实现微信读书的换一批效果(两种方式)

    2023-10-23 14:30:55
  • Python手绘可视化工具cutecharts使用实例

    2022-12-25 07:27:54
  • PHP header()函数常用方法总结

    2023-09-06 16:51:50
  • CentOS6.9下mysql 5.7.17安装配置方法图文教程

    2024-01-23 12:26:03
  • python中Requests发送json格式的post请求方法

    2021-05-24 10:09:45
  • asp之家 网络编程 m.aspxhome.com