Open colelogan opened 3 months ago
The last line of your output indicates there is a file permission issue:
shutil.Error: [('ESP32-3248S035=symlink://../../platformio\\.pio\\libdeps\\esp32-3248s035.lock', 'C:\\Users\\colel\\.platformio\\.cache\\tmp\\pkg-installing-u2dws9um\\platformio\\.pio\\libdeps\\esp32-3248s035.lock', '[Errno 13] Permission denied')]
But, your file paths imply you are on Windows, and I'm not sure if/how Python on Windows supports symlinks.
You should be able to just replace the following line in the example's platformio.ini
:
lib_deps =
ESP32-3248S035=symlink://../../
with either of the following options:
lib_deps =
ESP32-3248S035=file://C:/PATH/TO/WHERE/YOU/INSTALLED/ESP32-3248S035
; -- OR --
lib_deps =
https://github.com/ardnew/ESP32-3248S035.git#main
Updated PlatformIO and Python then Building this repo on my machine with platformIO on VSCode gives me this error: Might be something with path of esp32-3248s035 but it would be awesome if it was compatible out the gate. I'm not so good at code lingo so I dont know what to do to fix this issue. Fixing this issue would be awesome!