what is pip in python
This question already has an answer here:
The pip command is a tool for installing and managing Python packages, such as those found in the Python Package Index.
It's a replacement for easy_install.
https://github.com/pypa/pip
Using PIP, You can install the module. It will install the dependency also.
Pip is a package management system used to install and manage software packages written in Python. You have to download PIP.then you can use pip to install packages. download pip from here: https://pypi.python.org/pypi/pip
I can't add a comment, so take a look at this link
How do I install pip on Windows?
you can think of pip as a "package" manager, you use it to install certain libraries or packages to your python installation.
链接地址: http://www.djcxy.com/p/26352.html上一篇: 如何获得python的PIP
下一篇: 什么是python中的点子