From 0f862edc4762fc1d521ec90e849a4e107fec0e4c Mon Sep 17 00:00:00 2001 From: Mike Kinney Date: Thu, 3 Mar 2022 04:29:34 +0000 Subject: [PATCH] remove the --user --- bin/platformio-custom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/platformio-custom.py b/bin/platformio-custom.py index d4117b4b..4672dbc9 100644 --- a/bin/platformio-custom.py +++ b/bin/platformio-custom.py @@ -11,7 +11,7 @@ env.Replace( MKSPIFFSTOOL=env.get("PROJECT_DIR") + '/bin/mklittlefs.py' ) try: import littlefs except ImportError: - env.Execute("$PYTHONEXE -m pip install --user littlefs-python") + env.Execute("$PYTHONEXE -m pip install littlefs-python") Import("projenv")