We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ed5ee9 commit 246967fCopy full SHA for 246967f
Lib/site.py
@@ -637,6 +637,8 @@ def venv(known_paths):
637
# but that's ok; known_paths will prevent anything being added twice
638
if system_site == "true":
639
PREFIXES.insert(0, sys.prefix)
640
+ if sys.base_exec_prefix != sys.exec_prefix:
641
+ PREFIXES.append(sys.base_exec_prefix)
642
else:
643
PREFIXES = [sys.prefix]
644
ENABLE_USER_SITE = False
0 commit comments