Brief introduction
Pip is Python has its own package management tool, similar to Yum and Apt-get.
Installation Steps :
1. Download get-pip.py:https://bootstrap.pypa.io/get-pip.py
2. Run the command with the root user: Python get-pip.py to complete the installation.
Use the detailed
1. PIP installation software
# pip Install somepackage [...] Successfully installed Somepackage
2. PIP View installed software
# pip show--files somepackage name:somepackage 1.0 /my/env/lib/pythonx.x/site-packages Files: .. /somepackage/__init__. py [...]
3. PIP checks which software needs to be updated
# pip list--outdated Somepackage (current:1.0 latest:2.0)
4. PIP Upgrade Software
# pip install--upgrade somepackage [...] 1.0 Uninstalling Somepackage: successfully uninstalled somepackage for Somepackage successfully installed Somepackage
5. Pip Uninstall software
$ pip Uninstall somepackage Uninstalling Somepackage: /my/env/lib/pythonx.x/site-packages/somepackage Proceed (y/ N)? Y successfully uninstalled somepackage
working with Instances
Installing flask
Common Error Resolution
Refer to "Importerror No module named Setuptools solution"
Linux PIP Installation Use detailed