From eb369f21a93b53f65def450fb2e7aa1857cc2f18 Mon Sep 17 00:00:00 2001 From: Juraj Sadel Date: Fri, 17 Sep 2021 15:36:44 +0200 Subject: [PATCH] tools/idf_tools.py: Changed default AppData seeder to seeder pip --- tools/idf_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_tools.py b/tools/idf_tools.py index 074bdfb13c..a984d4b814 100755 --- a/tools/idf_tools.py +++ b/tools/idf_tools.py @@ -1243,7 +1243,7 @@ def action_install_python_env(args): # type: ignore subprocess.check_call([sys.executable, '-m', 'pip', 'install', '--user', 'virtualenv'], stdout=sys.stdout, stderr=sys.stderr) - subprocess.check_call([sys.executable, '-m', 'virtualenv', idf_python_env_path], + subprocess.check_call([sys.executable, '-m', 'virtualenv', '--seeder', 'pip', idf_python_env_path], stdout=sys.stdout, stderr=sys.stderr) run_args = [virtualenv_python, '-m', 'pip', 'install', '--no-warn-script-location'] requirements_txt = os.path.join(global_idf_path, 'requirements.txt')