diff --git a/src/poetry/utils/shell.py b/src/poetry/utils/shell.py index d60998f0b0e..290a62c09c1 100644 --- a/src/poetry/utils/shell.py +++ b/src/poetry/utils/shell.py @@ -108,6 +108,8 @@ def activate(self, env: VirtualEnv) -> int | None: if self._name == "zsh": # Under ZSH the source command should be invoked in zsh's bash emulator c.sendline(f"emulate bash -c '. {shlex.quote(str(activate_path))}'") + elif self._name == "xonsh": + c.sendline(f"vox activate {shlex.quote(str(env.path))}") else: cmd = f"{self._get_source_command()} {shlex.quote(str(activate_path))}" if self._name in ["fish", "nu"]: