diff --git a/platformio/commands/run/processor.py b/platformio/commands/run/processor.py index 7f2033a7..4c0b92fe 100644 --- a/platformio/commands/run/processor.py +++ b/platformio/commands/run/processor.py @@ -71,7 +71,7 @@ class EnvironmentProcessor(object): {"project_targets": build_targets}, ) - result = PlatformFactory.new(self.options["platform"]).run( + result = PlatformFactory.new(self.options["platform"], autoinstall=True).run( build_vars, build_targets, self.silent, self.verbose, self.jobs ) return result["returncode"] == 0