mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 12:44:33 +02:00
feat(tools): Enforce pip 'user' option to no, when installing python env
Closes https://github.com/espressif/esp-idf/issues/16189
This commit is contained in:
@@ -2686,9 +2686,8 @@ def action_install_python_env(args): # type: ignore
|
|||||||
install_legacy_python_virtualenv(idf_python_env_path)
|
install_legacy_python_virtualenv(idf_python_env_path)
|
||||||
|
|
||||||
env_copy = os.environ.copy()
|
env_copy = os.environ.copy()
|
||||||
if env_copy.get('PIP_USER') == 'yes':
|
# Enforce disabling possible pip 'user' option to prevent installation error with virtual environment
|
||||||
warn('Found PIP_USER="yes" in the environment. Disabling PIP_USER in this shell to install packages into a virtual environment.')
|
env_copy['PIP_USER'] = 'no'
|
||||||
env_copy['PIP_USER'] = 'no'
|
|
||||||
|
|
||||||
constraint_file = get_constraints(idf_version) if use_constraints else None
|
constraint_file = get_constraints(idf_version) if use_constraints else None
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user