-
-
Notifications
You must be signed in to change notification settings - Fork 31.5k
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
venv.EnvBuilder and venv.create should have the same symlinks defaults as python -m venv #129382
Comments
cc @FFY00 |
The CLI is meant to "just work" for users, while the programmatic API is more intentful, so I can see how it could make sense to have different defaults, but that said, I believe the state of support for symlinks has improved greatly since the PEP was written, so IMO it would make sense to change the default to always enable symlinks. |
Well, if we change the API defaults, isn't there some potential for breaking existing code? And this improved support for symlinks (presumably you mean on Windows) - as far as I'm aware, on Windows 10 you still need Administrator privileges to create symlinks. Is that not the case? |
We can make the default trying to create symlinks, and falling back to copy if it fails, but I'd like @zooba to confirm that the UX experience there wouldn't be negative. |
I think there's a possibility for breakage, but using copied interpreters on Unix systems seems to be more problematic than symlinks so I would be surprised.
Why not just focus on having the same defaults as |
Having it match the default of the platform would be fine, but I don't think we should have them enabled by default on Windows at this stage. They're not tested well enough and too likely to break for how widely used venv is (even if the programmatic interface isn't as widely used). The proposal is to match the command line, and that's as far as we should go. Though I'll also note that changing a programmatic interface is more of a breaking change than the command line (as Vinay said), and that should be taken into account as well. |
Signed-off-by: Filipe Laíns <[email protected]>
Signed-off-by: Filipe Laíns <[email protected]>
Yeah, that sounds good. I opened GH-129493.
Since defaulting to copying the executable on Windows is not problematic, and we haven't gotten any request for the "symlink with fallback" option, I think we can leave it as-is. |
When running
python -m venv
to create a venv, the choice of whether to symlink or copy the Python executable is based on the current OS:When using the programmatic API, however, both
venv.EnvBuilder()
andvenv.create()
default tosymlinks=False
.I don't understand the reason for this discrepancy. The PEP proposing
venv
has a section addressing copies versus symlinks that makes a pretty good argument that symlinks should be preferred whenever possible, and #59486 (comment) makes the same argument, saying "Following discussions on python-dev, the default is always to symlink, except on Windows (no support for true symlinks on XP and older) and Mac OS X (problems with framework builds)." (I couldn't find those python-dev discussions.) Nothing in this argument seems like it should apply only to the CLI interface and not to the API.I tracked down the commit that added the OS-specific behavior from @vsajip's dev repo, and it doesn't explain why this was only changed in the CLI. (Before that commit, both the CLI and the API defaulted to copies.) While the behavior discrepancy is documented, the documentation seems to be retroactively stating the behavior of the code (#60582, #76700) as opposed to documenting an actual intention.
Furthermore, as discussed in astral-sh/python-build-standalone#381, copy-based venvs don't work properly if your Python interpreter is built to link
libpython.so
and is relocatable (can be installed at any arbitrary location on the filesystem). This leads to a confusing discrepancy in behavior betweenpython -m venv
, which works fine with these types of interpreters, and the API. (As I note in that issue, Apple seems to have run into this with the Python distributions shipped via Xcode and has patched thevenv
module to behave consistently between the CLI and API and also to throw an error in the copy case if they detect it's about to not work.)I think it would be good to change the behavior of the CLI and the API to be consistent, i.e., refactor the
if os.name == 'nt'
logic intovenv.EnvBuilder.__init__()
and havepython -m venv
not override it. I don't think there should be a serious backwards-compatibility risk in changing the default argument: in the cases where there's a noticeable difference, it's probably what users expect anyway, and if it does cause an issue in someone's code, it's easy (and clearer) to specifically callvenv.create(symlinks=False)
.I can send a PR with a NEWS entry if this change seems reasonable / nobody remembers why the discrepancy exists.
Linked PRs
The text was updated successfully, but these errors were encountered: