File tree Expand file tree Collapse file tree 1 file changed +6
-7
lines changed
Expand file tree Collapse file tree 1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,14 @@ Rather than running your Python script directly, launch UDB with your Python int
1818
1919```
2020udb /path/to/python
21- - or -
21+ - or -
2222udb `which python`
2323```
2424
25- Note: If using pyenv, use: `` udb `pyenv which python` ``
25+ Note: If using pyenv, use:
26+ ``` bash
27+ udb ` pyenv which python`
28+ ```
2629
2730## ** Step 2: Install the Python Addon**
2831
@@ -50,7 +53,7 @@ For example:
5053not running> upy start /home/user/scripts/fizzbuzz.py 20
5154```
5255
53- UDB will initialise the Python environment and begin recording execution. You'll see a prompt like:
56+ UDB will initialize the Python environment and begin recording execution. You'll see a prompt like:
5457
5558```
5659Python has been initialized.
@@ -73,8 +76,6 @@ Use these to navigate at the **C level** (the underlying interpreter execution).
7376
7477
7578
76- ###
77-
7879### ** Python-level commands (prefixed with ` upy ` )**
7980
8081Use these to navigate at the ** Python level** (your script's source code). For example:
@@ -108,8 +109,6 @@ Python breakpoint 1, fizzbuzz () at /home/user/scripts/fizzbuzz.py:4
108109 if i % 3 == 0 and i % 5 == 0:
109110```
110111
111- ##
112-
113112## ** TUI Layout**
114113
115114For a visual, source-level debugging interface, type:
You can’t perform that action at this time.
0 commit comments