Let's see if everything works, shall we!? :D
Run the following following cells by either hitting the run cell button above (looks like a play button), or by the shortcut shift + enter.
If you installed all of these packages, you'll see something like the following print out for each:
<module 'numpy' from '/Users/mollie/.pyenv/versions/3.6.0/lib/python3.6/site-packages/numpy/__init__.py'>.
If it is not installed, you will get an error instead.
In [1]:
import numpy
numpy
Out[1]:
In [2]:
import scipy
scipy
Out[2]:
In [3]:
import pandas
pandas
Out[3]:
In [4]:
import matplotlib
matplotlib
In [5]:
import seaborn
seaborn
In [6]:
import psycopg2
psycopg2
In [7]:
import statsmodels
statsmodels
In [8]:
import csvkit
csvkit
Congrats! You're all set up! :D
In [ ]: