You can use this assignment in your class!
Mastery Progress(100.0%)
i

Unit 6: Modules - Review Assignment

What is the name of Python's package manager?

You answeredJUST NOW

(Student response here)

  • I want to share my response with my peers
  • Share as
    (Student name)
    Options
    • (Student name)
    • Anonymous

Did you like this question?

(Voting helps us personalize your learning experience!)
imgInstructor solution
Alec KretchOCT 10, 2021, 8:35:31 AM

PIP

Was this helpful?

(Voting helps us personalize your learning experience!)
img6.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.

Was this helpful?

(Voting helps us personalize your learning experience!)
Think you've got it?

Which of the following commands can be used to install the third-party module requests in Python?

Select one or more of the following options:
  • 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

Submit answer

Was this helpful?

(Voting helps us personalize your learning experience!)

You may exit out of this review and return later without penalty.