1. Get Started#

Open In Colab

There are multiple ways to run Jupyter notebooks. You can either run them locally on your machine or use an online service like Google Colab or Binder.

print("Hello, Python!")
Hello, Python!

1.1. Using Google Colab#

Google Colab is a free online service that allows you to run Jupyter notebooks in the cloud. You can access it by visiting colab.research.google.com.

To run a Jupyter notebook from this course in Google Colab, hover the mouse over the rocket icon in the top right corner of the notebook and click on the “Colab” link to open the notebook in Google Colab.

image

1.2. Using Binder#

Binder is another free online service that allows you to run Jupyter notebooks in the cloud. You can access it by visiting mybinder.org.

To run a Jupyter notebook from this course in Binder, hover the mouse over the rocket icon in the top right corner of the notebook and click on the “Binder” link to open the notebook in Binder.

image

1.3. Running Locally#

To run Jupyter notebooks locally on your machine, you need to have JupyterLab installed. You can install it using the following command:

pip install jupyterlab

Once you have JupyterLab installed, you can run it by executing the following command in your terminal:

jupyter lab

This will open JupyterLab in your default web browser, where you can navigate to the notebook you want to run.

image