Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.09 KB

File metadata and controls

42 lines (33 loc) · 1.09 KB

Python Libraries:

Install the libraries for the Python course via the conda Python package system. Links to the libraries are provided only for reference.

To install a packaged via conda or pip:

  1. open a terminal

  2. type the listed commands

Twitter API

Install Tweepy:

pip install tweepy

Quantative Analysis & Textual Analysis

These should be installed in conda by default. Otherwise install pandas, and sklearn:

conda install pandas -y
conda install scikit-learn -y

Textual Analysis

Follow the NLTK install instructions

Check installs:

Check if a library is installed by trying to import it into python.

  1. open a terminal
  2. type python. Once in the interpreter, you should see >>>.
  3. Check that the packages are installed by trying to import them. Type:
import tweepy
import pandas
import sklearn