What is the name of Python's package manager?
Instructor solution
6.3 Third-Party Modules - Lesson
PIP
PIP is Python's package manager, or system used for installing third-party modules.
PIP comes with Python. You can use the pip install package
command in BASH (Terminal) to install modules that other developers have shared openly with the Python community.
As an example, pip install requests
will install the requests
package by Kenneth Reitz.
The Python Package Index (PyPi) is a useful source to discover public Python modules.
Think you've got it?
Which of the following commands can be used to install the third-party module requests
in Python?
- A.
pip install requests==2.26.0
- B.
pip install requests.2.26.0
- C.
install pip requests
- D.
pip requests
- E.
pip install requests
You may exit out of this review and return later without penalty.