Pb compiling VSC/PlatformIO

Hi everyone,

I’ll need your help: I’m totally new to the VSC / PlatformIO environment (although not into programming) but I’m having a weird problem.

I followed all the tutorial given to install / configure my VSC / PlatformIO for programming my Nibble. I’ve created the test project “hello world” :

#include <Arduino.h>
#include <Nibble.h>
#include <Display/Display.h>

Display* display;
Sprite* sprite;

void setup() {
  Nibble.begin();
  display = Nibble.getDisplay();
  sprite = display->getBaseSprite();
  sprite->clear(TFT_BLACK);
  sprite->setTextColor(TFT_WHITE);
  sprite->setTextFont(2);
  sprite->setCursor(0, 0);
  sprite->print("Hello world!");
  display->commit();
}

void loop() {
  // put your main code here, to run repeatedly:
}

But it cannot compile due to many "locked files cause accessed by another process ":

> Executing task in folder NibbleTest1: C:\Users\[...]\.platformio\penv\Scripts\platformio.exe run <

Processing esp12e (platform: espressif8266; board: esp12e; framework: arduino)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------Verbose mode can be enabled via `-v, --verbose` option
CONFIGURATION: https://docs.platformio.org/page/boards/espressif8266/esp12e.html
PLATFORM: Espressif 8266 (3.2.0) > Espressif ESP8266 ESP-12E
HARDWARE: ESP8266 80MHz, 80KB RAM, 4MB Flash
PACKAGES:
 - framework-arduinoespressif8266 3.30002.0 (3.0.2)
 - tool-esptool 1.413.0 (4.13)
 - tool-esptoolpy 1.30000.201119 (3.0.0)
 - toolchain-xtensa 2.100300.210717 (10.3.0)
LDF: Library Dependency Finder -> http://bit.ly/configure-pio-ldf
LDF Modes: Finder ~ deep+, Compatibility ~ soft
Found 38 compatible libraries
Scanning dependencies...
Dependency Graph
|-- <Nibble> 1.0.0
|   |-- <CircuitOS> 1.0.0
|   |   |-- <TFT_eSPI> 2.1.4
|   |   |   |-- <SPI> 1.0
|   |   |-- <SPI> 1.0
|   |   |-- <Wire> 1.0
|   |   |-- <LittleFS> 0.1.0
|   |-- <TFT_eSPI> 2.1.4
|   |   |-- <SPI> 1.0
|   |-- <SPI> 1.0
|   |-- <Wire> 1.0
|-- <CircuitOS> 1.0.0
|   |-- <TFT_eSPI> 2.1.4
|   |   |-- <SPI> 1.0
|   |-- <SPI> 1.0
|   |-- <Wire> 1.0
|   |-- <LittleFS> 0.1.0
|-- <TFT_eSPI> 2.1.4
|   |-- <SPI> 1.0
|-- <SPI> 1.0
|-- <Wire> 1.0
Building in release mode
Compiling .pio\build\esp12e\src\main.cpp.o
Generating LD script .pio\build\esp12e\ld\local.eagle.app.v6.common.ld
Compiling .pio\build\esp12e\lib255\SPI\SPI.cpp.o
Le processus ne peut pas acc‚der au fichier car ce fichier est utilis‚ par un autre processus.
Le processus ne peut pas acc‚der au fichier car ce fichier est utilis‚ par un autre processus.
Compiling .pio\build\esp12e\lib19d\TFT_eSPI\TFT_eSPI.cpp.o
*** [.pio\build\esp12e\ld\local.eagle.app.v6.common.ld] Error 1
Le processus ne peut pas acc‚der au fichier car ce fichier est utilis‚ par un autre processus.
*** [.pio\build\esp12e\src\main.cpp.o] Error 1
*** [.pio\build\esp12e\lib19d\TFT_eSPI\TFT_eSPI.cpp.o] Error 1
================================================================================================== [FAILED] Took 16.68 seconds ==================================================================================================ArrĂŞt du processus de terminal "C:\Users\[...]\.platformio\penv\Scripts\platformio.exe 'run'". Code de sortie : 1.

I thought it was a basic problem, but nothing found on my differents webcrawlers(or maybe I’ve not used the right keywords or sites)…
I’ve tried to inactivate my anti-virus but the problem remains.
I’ve also tried on another computer : same issue !

Is there anyone who knows how to fix this problem?
Thanks in advance !

Operating system: Windows 10, PlatformIO Core 5.1.1