Code: Select all
Generating partitions .pio/build/lilygo-t-display-s3/partitions.bin
Traceback (most recent call last):
File "/home/brundage/.platformio/packages/tool-esptoolpy/esptool.py", line 41, in <module>
import esptool
File "/home/brundage/.platformio/packages/tool-esptoolpy/esptool/__init__.py", line 42, in <module>
from esptool.bin_image import intel_hex_to_bin
File "/home/brundage/.platformio/packages/tool-esptoolpy/esptool/bin_image.py", line 16, in <module>
from intelhex import HexRecordError, IntelHex
ModuleNotFoundError: No module named 'intelhex'
Compiling .pio/build/lilygo-t-display-s3/FrameworkArduino/Esp.cpp.o
*** [.pio/build/lilygo-t-display-s3/bootloader.bin] Error 1Code: Select all
0 zippy brundage/.platformio % pwd
/home/brundage/.platformio
0 zippy brundage/.platformio % find . -name python
./penv/bin/python
0 zippy brundage/.platformio % ll penv/bin/python
lrwxrwxrwx 1 brundage brundage 7 Aug 3 11:53 penv/bin/python -> python3*
0 zippy brundage/.platformio % ll penv/bin/python3
lrwxrwxrwx 1 brundage brundage 39 Aug 3 11:53 penv/bin/python3 -> /usr/lib/python-exec/python3.13/python3*
Code: Select all
0 zippy brundage/.platformio % ./penv/bin/python
Python 3.13.5 (main, Jul 6 2025, 19:08:34) [GCC 14.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from intelhex import IntelHex
Traceback (most recent call last):
File "<python-input-0>", line 1, in <module>
from intelhex import IntelHex
ModuleNotFoundError: No module named 'intelhex'
>>>
0 zippy brundage/.platformio % /usr/lib/python-exec/python3.13/python3
Python 3.13.5 (main, Jul 6 2025, 19:08:34) [GCC 14.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from intelhex import IntelHex
>>>