pip: Package manager
pip
is the package installer for Python. You can use pip to install packages from the Python Package Index and other indexes.
The packages pip
installed could be a Python module or executable binaries.
Playaround
Let's have a look at wikipedia
module, installation:
Then we create a Python script with:
We can get:
Last updated