mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(tools): venv detection use VIRTUAL_ENV environ
To fix https://github.com/espressif/esp-idf/issues/12036 This is required for Nix "venv"-like way.
This commit is contained in:
parent
d7ca8b94c8
commit
c25b563061
@ -2573,7 +2573,7 @@ def action_install_python_env(args): # type: ignore
|
||||
reinstall = args.reinstall
|
||||
idf_python_env_path, _, virtualenv_python, idf_version = get_python_env_path()
|
||||
|
||||
is_virtualenv = hasattr(sys, 'real_prefix') or (hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix)
|
||||
is_virtualenv = 'VIRTUAL_ENV' in os.environ
|
||||
if is_virtualenv and (not os.path.exists(idf_python_env_path) or reinstall):
|
||||
fatal('This script was called from a virtual environment, can not create a virtual environment again')
|
||||
raise SystemExit(1)
|
||||
|
Loading…
Reference in New Issue
Block a user