---
slug: "connect-circuit-py-circuit-py-serial-console"
title: "Displaying Serial Console Output (Viewing Standard Output When Installing CircuitPython on Raspberry Pi Pico)"
description: "Here's an overview of a blog post detailing how to view the standard output of a serial console connected to a Mac. This method is useful when you need to monitor the output from CircuitPython, among other uses."
url: "https://www.ytyng.com/en/blog/connect-circuit-py-circuit-py-serial-console"
publish_date: "2023-02-11T12:21:35Z"
created: "2023-02-11T12:21:35Z"
updated: "2026-02-27T03:42:21.622Z"
categories: []
keywords: ""
featured_image_url: "https://media.ytyng.com/resize/20250708/fe46fef91ff64e119d1dc16fd87902c5.png.webp?width=768"
has_video: true
has_music: true
video_urls: ["https://media.ytyng.net/ytyng-blog/272/featured-video-1.mp4", "https://media.ytyng.net/ytyng-blog/272/featured-video-2.mp4", "https://media.ytyng.net/ytyng-blog/272/featured-video-3.mp4"]
music_urls: ["https://media.ytyng.net/ytyng-blog/272/featured-music-272-1.mp3", "https://media.ytyng.net/ytyng-blog/272/featured-music-272-2.mp3"]
lang: "en"
---

# Displaying Serial Console Output (Viewing Standard Output When Installing CircuitPython on Raspberry Pi Pico)

Here’s how to view the standard output of a serial console connected to a Mac.
You can use this method when checking the output of CircuitPython, for example.

To see the list of /dev/tty:

```shell
ls /dev/tty.*
```

To connect using screen:

```shell
screen /dev/tty.usbmodem11401
```

To exit, press `Control + A` → `k` → `y`.
