Is this a problem with pio core or something with my system?
version: PlatformIO Core, version 6.0.2
I see you have globally installed PlatformIO since its referencing Python files from /home/<user>/.local/lib/python3.10
. It looks like your specific Python 3.10 version is not compatible with PlatformIO, or at least with that UUID library you have installed (?).
Suggestions:
- Update your broken Python installation since this is a known bug: Issue 44780: Incorrect message: "Invalid decimal literal" (python 3.10) - Python tracker
- Use the recommended way to install PlatformIO, which creates an isolated virtual enviornment: Installer Script (Recommended) — PlatformIO latest documentation. Install shell commands thereafter (Install Shell Commands — PlatformIO latest documentation). Of course, pip uninstall your old installation first.
1 Like
Okay I uninstalled platforimio and completely purged the cache stuff from $HOME/.platformio
, Reinstalled using the recommended script and now this working, thanks for you help