Lecture 12 Extra Credit Notebook

Step 0: One more library

We need one more Python to help us with graphics in Python!

conda install matplotlib

Step 1: Retrieve via git

git fetch release
git merge release/ec_lecture12 -m "Merging initial files"

ONLY IF you get an error related to unrelated histories, use:

git merge release/ec_lecture12 --allow-unrelated-histories -m "Merging initial files" 

Step 2: Open the notebook

Open the notebook with the command:

jupyter notebook

Inside of the notebook webpage:

Step 3: Submitting your work

When you’re ready to save your work online and/or submit your work, return to the command line and run:

git add -A
git commit -m "submission (or any message here)"
git push origin master