{ "cells": [ { "cell_type": "markdown", "id": "promotional-texas", "metadata": {}, "source": [ "# Check Your Python Installation\n", "\n", "---\n", "\n", "Use this notebook to check your Python installation. Run the chunk below; if you see `\"Success!\"` then you're ready to go! If you get an error, please contact a TA to get some help.\n" ] }, { "cell_type": "code", "execution_count": 2, "id": "seeing-latin", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Success!\n" ] } ], "source": [ "import grama\n", "import plotly\n", "import ipympl\n", "\n", "print(\"Success!\")" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.8" } }, "nbformat": 4, "nbformat_minor": 5 }