remove the --user

This commit is contained in:
Mike Kinney 2022-03-03 04:29:34 +00:00
parent c1613de426
commit 0f862edc47

View File

@ -11,7 +11,7 @@ env.Replace( MKSPIFFSTOOL=env.get("PROJECT_DIR") + '/bin/mklittlefs.py' )
try: try:
import littlefs import littlefs
except ImportError: except ImportError:
env.Execute("$PYTHONEXE -m pip install --user littlefs-python") env.Execute("$PYTHONEXE -m pip install littlefs-python")
Import("projenv") Import("projenv")