Cyberhub Home
Prerequisites
1. Create a New Jupyter Notebook
Customize your Jupyter Notebook
- Each of the code snippets below is the code you will paste into your Jupyter Notebook cells.
- Start with the first cell. Run the code.
- Move to the next cell. Run the code. And so on.
- You don’t need to rerun all of the previous cell code.
To view your Jupyter Notebook in full screen, paste the following code in the top cell and run it
from IPython.core.display import display, HTML
display(HTML("<style>.container { width:100% !important; }</style>"))
Install the necessary packages
!pip3 install pymysql
!pip3 install ipython-sql
!pip3 install mysqlclient