About pip
What is pip
Mechanism for installing and managing python libraries
Typical library example
- django
- flake8
- openpyxl etc.
Main commands
- pip install Library installation
- pip uninstall Uninstall library
- pip freeze Check installed libraries and version
Library installation source
PyPI
- Library storage on the Internet
- Developers around the world publish their libraries here
https://pypi.python.org/pypi
- Download and install the library specified by pip install from PyPI
(Example) pip install django
Files placed locally
- Local files can also be installed with pip install
- pip install (files placed locally)
Library installation destination
- Normally, various libraries are installed under (python install directory) / Lib / site-packages