-
Notifications
You must be signed in to change notification settings - Fork 1.5k
pick up site packages from the interpreter's sys.path
#2636
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
62cb807
7867aaf
3edf010
1422913
faffa03
211beeb
598dc46
df65025
f70ae36
bd56bf2
b9bb8d0
7e7f044
b733071
1f6aa2a
ce0afa7
9db033e
c51bc4f
8282f29
ad5cf7e
42c4355
5cb9226
d07d9ad
28625e8
c442b26
64c883e
f14f5dd
3a4680c
cb5a40a
329e58a
6c81b4f
803c20d
8e40817
9cb888d
7a2d7c6
005a16a
c22f473
f89dd9f
57b2891
d675f4a
21f24c2
f0de85d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -520,6 +520,7 @@ def main() -> None: | |
"prefix": sys.prefix, | ||
"base_executable": getattr(sys, "_base_executable", None), | ||
"sys_executable": sys.executable, | ||
"sys_path": sys.path, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. is it desirable for cwd to be in here? (if not, it should be removed, accounting for sys.flags.safe_path) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. probably will leave this value as is so that it still equals to |
||
"stdlib": sysconfig.get_path("stdlib"), | ||
"scheme": get_scheme(), | ||
"virtualenv": get_virtualenv(), | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pip
installed viayum install python3-pip
hasRECORD
missing, which causes issues described in pypa/pip#11631 (this issue can be reproduced pulling the docker image used and running the command here)