Learn
The 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 will need to use a package manager.
Pip is the package manager used to install Python packages. It looks up packages in the Python Package index (PyPi). PyPi is the official third party repository for Python packages.
In the terminal, we’ll use the pip
command to install the following necessary packages for this project:
python-twitter
watson-developer-cloud
Instructions
1.
Install the python-twitter
package by typing the following command in the terminal:
pip install python-twitter
2.
Install the watson-developer-cloud
package by typing the following command in the terminal:
pip install watson-developer-cloud
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.