Python中的第三方包

目录

  • 什么是第三方包
  • 利用pip与easy_install
  • 获取第三方包
  • 第一个第三方包工具ipython

什么是第三方包

  • 其他程序员写好的功能封装成包(模块)发布到网上
  • 提高开发效率

利用pip与easy_install 获取第三方包

  • python的第三方包管理工具,pip的使用率最高
  • Python3.4以上版本在安装python的时候已经自带了这两种包管理工具
  • 老版python可通过 https://pip.pypa.io/en/stable/installing/
  • pip install 包名
  • github.com 搜索 python第三方包
    在这里插入图片描述

第一个第三方包–ipython

  • ipython是一个python的交互式shell,比默认的
  • python shell好用得多,支持变量自动补全,自动缩进
  • 安装:pip install ipython
    Python中的第三方包_第1张图片
  • easy_install
    在这里插入图片描述

使用国内源安装

  • pip install -i 源地址 包名
  • 源地址有:
    • 清华: https://pypi,tuna.tsinghua.edu.cn/simple
    • 阿里云: http://mirrors.aliyun.com/pypi/simple/
    • 中国科技大学: https://pypi.mirrors.ustc.edu.cn/simple/
    • 华中理工大学: http://pypi.hustunique.com/
    • 山东理工大学: http://pypi.sdutlinux.org/
    • 豆瓣: http://pypi.douban.com/simple/

删除包

  • pip uninstall 包名

指定版本安装

  • pip install 包名== 版本号

你可能感兴趣的:(Python全栈,python,pip)