platformio / platform-espressif8266

Espressif 8266: development platform for PlatformIO
https://registry.platformio.org/platforms/platformio/espressif8266
Apache License 2.0
325 stars 219 forks source link

tool-scons not available for darwin_x86_64 #116

Closed OttoWinter closed 5 years ago

OttoWinter commented 5 years ago

Recently did a platformio platform update for my dev environment on a Macbook. Now I get this error that tool-scons cannot be found for my system architecture:

Error: Could not find a version that satisfies the requirement '~3.30100.0' for your system 'darwin_x86_64'

I also cannot find a matching version on bintray: https://bintray.com/platformio/dl-packages/tool-scons#files

(Note this is probably a platformio-wide issue, since scons is used by the entire system, but posting it here as for some reason it only shows up for ESP8266 for me)

Platformio.ini:

[env:test8266]
platform = espressif8266@1.8.0
framework = arduino
board = d1_mini

Probably there's more information that's required to debug this, but I don't know what all to include here. Please tell me what to include here if something is needed.

ivankravets commented 5 years ago

Please run pio upgrade --dev

OttoWinter commented 5 years ago

That fixed it, thanks!