PyPI – the Python Package Index · PyPI The Python Package Index (PyPI) is a repository of software for the Python programming language. Package authors use PyPI to distribute their software. PyPI是Python官方维护的软件仓库,包含众多Python使用的第三方插件。
PyPA The Python Packaging Authority (PyPA) is a working group that maintains many of the relevant projects in Python packaging. PyPA是Python社区的一个官方团队,负责维护和Python软件打包相关的项目。
pip 是什么?
pip is a command line program. When you install pip, a pip command is added to your system.
# #### example-requirements.txt #### # ### Requirements without Version Specifiers ### nose nose-cov beautifulsoup4 # ### Requirements with Version Specifiers ### # See https://www.python.org/dev/peps/pep-0440/#version-specifiers docopt == 0.6.1 # Version Matching. Must be version 0.6.1 keyring >= 4.1.1 # Minimum version 4.1.1 coverage != 3.5 # Version Exclusion. Anything except version 3.5 Mopidy-Dirble ~= 1.1 # Compatible release. Same as >= 1.1, == 1.* # ### Refer to other requirements files ### -r other-requirements.txt # # ### A particular file ### ./downloads/numpy-1.9.2-cp34-none-win32.whl http://wxpython.org/Phoenix/snapshot-builds/wxPython_Phoenix-3.0.3.dev1820+49a8884-cp34-none-win_amd64.whl # ### Additional Requirements without Version Specifiers ### # Same as 1st section, just here to show that you can put things in any order. rejected green #