Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 1007 Bytes

File metadata and controls

39 lines (26 loc) · 1007 Bytes

import { MarkdownChipRow } from "/src/components/Chip/MarkdownChipRow";

dfxvm-init

<MarkdownChipRow labels={["Reference"]} />

When invoked as dfxvm-init, dfxvm performs one-time installation tasks.

By default, installs the latest version of dfx, and gives you an opportunity to customize the installation.

dfxvm-init [--dfx-version <version>] [--yes]

Options

Option Description
--dfx-version <version> The version of dfx to install. Defaults to the latest dfx version
--yes Skip confirmation prompt
--no-modify-path Do not alter profile scripts to modify the PATH environment variable

Examples

dfxvm-init

Install dfxvm and dfx 0.14.4, with an opportunity to customize the installation:

dfxvm-init --dfx-version 0.14.4

Install dfxvm and the latest version of dfx without prompting for confirmation:

dfxvm-init --yes