If you are running these notebooks on Binder, then there is no need to run this notebook. However, if you running these notebook on your own computer or on a different service, then the necessary Python packages may not be installed.
By executing (Shift-Enter) the code cells below, you will instruct pip
(a Python package manager) to install the necessary packages.
# Basic packages for doing data analysis
!pip install numpy matplotlib pandas
# Libraries necessary for accessing Yahoo Finance
!pip install yahoo_fin requests_html
# A Python package for interfacing with Twitter's API
!pip install twitter
# Make nicer text-based tables
!pip install prettytable
# The Natural Language Toolkit
!pip install nltk
# For parsing HTML
!pip install beautifulsoup4
# For accessing and parsing RSS feeds
!pip install feedparser
# Small, fast HTTP client
!pip install httplib2
# A prerequisite for dragnet
!pip install cython
# Using machine learning for distinguishing main webpage content from boilerplate
!pip install dragnet
# The premier machine learning library for Python
!pip install scikit-learn