From the course: Hands-On AI: Image Processing with Python
Unlock this course with a free trial
Join today to access over 25,300 courses taught by industry experts.
Testing your environment - Python Tutorial
From the course: Hands-On AI: Image Processing with Python
Testing your environment
- [Instructor] Let's test your setting to make sure you have everything you need to run Jupyter Notebooks. For this, let me open the file "Testing your Environment.ipynb" in the Chapter one folder. Jupyter Notebooks are interactive documents where you can write and run codes alongside explanations and results. They are made up of cells, which you can run one at a time, making them suitable for testing things out step by step. For this reason, Jupyter Notebooks are perfect for experimenting, visualizing results, and learning by doing. Now let's run this notebook. You can do this by selecting a cell and pressing the "Run" button on the left. The very first time you may be prompted for the "kernel" to use. This is the backend to execute the Python code. You can go ahead and select Python if asked. So the first cell should print your installed version of Python. Below each cell you run, you'll see its output. Here we have Python version 3.12.1. In the next cell, we'll print your NumPy…