PIP: The Python Package Manager
The Celebrity Match application require a couple of third-party Python packages. In this unit, you'll install the packages using PIP, Python's package manager.
StartUsing PIP
Lesson 1 of 1
- 1The Celebrity Match application we’re building requires a couple of Python packages to be installed. We’ll use these packages in our code To install the packages required for this project, we …
- 2Let’s make sure that the packages installed properly. The easiest way to check is by running the following command in the terminal: pip freeze This commands displays the installed Python pack…