From 270f1f60a90f2fefcd9c4a396c458fc2a9802994 Mon Sep 17 00:00:00 2001 From: Xiong Ding Date: Tue, 23 Jul 2024 21:41:31 -0700 Subject: [PATCH] fix a typo --- _posts/2024-03-05-python-get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2024-03-05-python-get-started.md b/_posts/2024-03-05-python-get-started.md index a29ceb9..dc0b1fb 100644 --- a/_posts/2024-03-05-python-get-started.md +++ b/_posts/2024-03-05-python-get-started.md @@ -166,7 +166,7 @@ gdb supports python API after gdb-7.0, but it must be configured with supported or not. See more details of [this post](https://sourceware.org/pipermail/gdb/2015-April/045235.html). -Using ubuntu as an example, you only need to `apt-get install gdb pytohn3-dbg`, +Using ubuntu as an example, you only need to `apt-get install gdb python3-dbg`, and then you can attach to a process `gdb python ` to debug a running python program. However, for my case, our program runs using python3.8, and the system python version is python3.9. so `apt-get install python3-dbg` actually