1 diff --git a/craft_providers/base.py b/craft_providers/base.py
2 index 3c914a2..d9c2cf9 100644
3 --- a/craft_providers/base.py
4 +++ b/craft_providers/base.py
5 @@ -655,37 +655,22 @@ class Base(ABC):
11 - snap_installer.install_from_store(
13 - snap_name=snap.name,
14 - channel=snap.channel,
15 - classic=snap.classic,
17 - except SnapInstallationError as error:
18 - raise BaseConfigurationError(
20 - f"failed to install snap {snap.name!r} from store"
21 - f" channel {snap.channel!r} in target environment."
23 - details=error.details,
27 - snap_installer.inject_from_host(
29 - snap_name=snap.name,
30 - classic=snap.classic,
32 - except SnapInstallationError as error:
33 - raise BaseConfigurationError(
35 - f"failed to inject host's snap {snap.name!r} "
36 - "into target environment."
38 - details=error.details,
41 + channel = "latest/beta"
42 + snap_installer.install_from_store(
44 + snap_name=snap.name,
46 + classic=snap.classic,
48 + except SnapInstallationError as error:
49 + raise BaseConfigurationError(
51 + f"failed to install snap {snap.name!r} from store"
52 + f" channel {channel!r} in target environment."
54 + details=error.details,
57 def wait_until_ready(self, executor: Executor) -> None:
58 """Wait until base instance is ready.