How to run cycles minting canister in local?

i’m using this command from kapa ai answer

dfx extension install nns
dfx nns install --ledger-accounts $DEFAULT_ACCOUNT_ID

and i got

Failed to download 'Url { scheme: "https", cannot_be_a_base: false, username: "", password: None, host: Some(Domain("github.com")), port: None, path: "/dfinity/internet-identity/releases/download/release-2024-05-13/internet_identity_dev.wasm.gz", query: None, fragment: None }' to '"/home/user/.cache/dfinity/versions/0.29.2/wasms/internet_identity_dev.wasm"'.

i noticed the 2024-05-13, perhaps there’s a new way to install nns extension?

if you use dfx 0.30.0-beta.2 there is a --system-canisters flag that you can use to spin up these canisters.

you can install it via dfxvm install 0.30.0-beta.2
and then run;
dfx start --system-canisters --background --clean

1 Like