Python教程

Python包管理

本文主要是介绍Python包管理,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

PyPA

The Python Packaging Authority (PyPA) is a working group that maintains a core set of software projects used in Python packaging.

  • page
  • github

PyPA推荐使用pip进行Python包管理。

命令

  • 版本
pip -V
    • 查看已安装的第三方库
    pip list
    
    • 查看有新版本的已安装的第三方库
    pip list --outdated
    
      - 详细信息
    
    pip show selenium
    
    • 安装最新版本
    pip install pip
    
    • 安装指定版本
    pip install selenium=3.0.1
    
    • 卸载
    pip uninstall selenium
    

  • https://pypi.tuna.tsinghua.edu.cn/simple
    清华大学的pip源,是官网pypi的镜像,每隔5分钟同步一次。
这篇关于Python包管理的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!