Why do I be prompted Could not find the package with 'esp32-s3-devkitc-1' requirements for your system 'windows_amd64'?

When I program esp2-s3-devkitc-1, I am prompted that I could not find the package with

Resolving esp32-s3-devkitc-1 dependencies...
Platform Manager: Installing esp32-s3-devkitc-1
UnknownPackageError: Could not find the package with 'esp32-s3-devkitc-1' requirements for your system 'windows_amd64'

Why is this happening?

Looks like a broken platform.

  • Close VS Code
  • Delete C:\Users\<username>\.platformio\platforms\*
  • Delete C:\Users\<username>\.platformio\packages\*
  • Delete C:\Users\<username>\.platformio\.cache\*
  • Restart VS Code
  • Wait until PlatformIO finished all tasks (reinstalling the platform)

I tried it and here’s the error it gave me

Resolving esp32-s3-devkitc-1 dependencies...
Platform Manager: Installing esp32-s3-devkitc-1
UnknownPackageError: Could not find the package with 'esp32-s3-devkitc-1' requirements for your system 'windows_amd64'


Please show your platformio.ini

; PlatformIO Project Configuration File
;
;   Build options: build flags, source filter
;   Upload options: custom upload port, speed and extra flags
;   Library options: dependencies, extra library storages
;   Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html


[env:esp32-s3-devkitc-1]
platform = esp32-s3-devkitc-1
board = esp32-s3-devkitc-1
framework = arduino
monitor_speed = 115200


That’s wrong!
Please use

platform = espressif32

Oh! It’s good! I don’t know much about PlatformIO, thank you for your answer!