Instructions for installing the Anaconda Python distribution can be found here:
Any 3.X version of Python is acceptable. Once you have a working Anaconda install, please open the conda terminal and type:
conda install -c conda-forge matplotlib jupyter pandas -y
More detailed instructions for using conda to install libraries can be found at
If for whatever reason Anaconda does not work, you can install Matplotlib using the pip package installer. First open a command line or terminal prompt and then type:
python -m pip install -U pip
python -m pip install -U matplotlib
python -m pip install -U pandas
To test the install, please open a Jupyter notebook and type the following in a cell:
%matplotlib inline
import pandas as pd
import matplotlib.pyplot as plt
df = pd.read_csv("http://bit.ly/tscv17")
fig, ax = plt.subplots()
_ = ax.plot(np.sort(df['Age']), 'o')
Then execute the cell and this figure should appear:
If you are unfamiliar with command or terminal prompts, more information can be found at:
- Windows: https://github.com/story645/install/blob/master/sections/windows_terminal.md
- OS/X: https://github.com/story645/install/blob/master/sections/osx_terminal.md
This tutorial uses Jupyter notebook as the programming environment. More information about opening and working with a Jupyter notebook can be found at https://github.com/story645/install/blob/master/sections/jupyter.md