Skip to content

Commit 22fcc9f

Browse files
committed
fixup! [#1] Add new README at top level
1 parent 251d2a9 commit 22fcc9f

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,14 @@ Rather than running your Python script directly, launch UDB with your Python int
1818

1919
```
2020
udb /path/to/python
21-
- or -
21+
- or -
2222
udb `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:
5053
not 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
```
5659
Python 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

8081
Use 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

115114
For a visual, source-level debugging interface, type:

0 commit comments

Comments
 (0)