Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,14 @@ PLAN A: Whenever start the ubuntu system, you need to type command `source ~/.en

or PLAN B: open `~/.bashrc` file, and attach the command `source ~/.env/env.sh` at the end of the file. It will be automatically executed when you log in the ubuntu, and you don't need to execute that command any more.

### Troubleshooting

**For Ubuntu 23.04+:** The install script uses `pip install` which may fail on newer Ubuntu versions due to PEP 668 restrictions. If the installation completes but you encounter `ModuleNotFoundError` errors later (e.g., `ModuleNotFoundError: No module named 'tqdm'` or `ModuleNotFoundError: No module named 'kconfiglib'` when using `pkgs` or `scons --menuconfig`), manually install the missing dependencies:

```bash
sudo apt install python3-tqdm python3-kconfiglib
```

### Use Env

Please see: <https://github.com/RT-Thread/rt-thread/blob/master/documentation/env/env.md#bsp-configuration-menuconfig>
Expand Down