- Go back to TOP(インデックスページへ)
- macOS
- Linux
- Windows
- Upgrade the Flow CLI
- Uninstalling Flow CLI
- Installing versions before 0.42.0
macOS
Homebrew
brew install flow-cli
From a pre-built binary
このインストール方法は、x86-64でのみ動作します。
このスクリプトは、あなたのシステムに適したバイナリをダウンロードしてインストールします。
sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"
アップデートするには、シンプルに上記のインストールコマンドを再実行してください。
現時点では、Flow CLI の以前のバージョンを Homebrew でインストールすることはできません。
Linux
From a pre-built binary
このインストール方法は、x86-64でのみ動作します。
このスクリプトは、あなたのシステムに適したバイナリをダウンロードしてインストールします。
sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"
アップデートするには、シンプルに上記のインストールコマンドを再実行してください。
Install a specific version
Flow CLI の特定のバージョンを v0.42.0 より新しいバージョンでインストールするには、コマンドにバージョンタグを追加します(例えば、以下のコマンドは CLI バージョン v0.44.0 をインストールします)。
sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)" -- v0.44.0
v0.42.0より古いバージョンをインストールするには、「0.42.0より前のバージョンのインストール」を参照してください。
Windows
From a pre-built binary
このインストール方法は、Windows 10、8.1、または 7 (SP1、PowerShell 3.0付き) の x86-64でのみで動作します。
- PowerShell を開く ("手順")
- PowerShellで次を実行します
iex "& { $(irm 'https://raw.githubusercontent.com/onflow/flow-cli/master/install.ps1') }"
アップデートするには、シンプルに上記のインストールコマンドを再実行してください。
Upgrade the Flow CLI
macOS - Homebrew
brew upgrade flow-cli
macOS - From a pre-built binary
このアップデート方法は、x86-64でのみ動作します。
このスクリプトは、あなたのシステムに適したバイナリをダウンロードしてアップデートします。
sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"
Linux - From a pre-built binary
このアップデート方法は、x86-64でのみ動作します。
このスクリプトは、あなたのシステムに適したバイナリをダウンロードしてアップデートします。
sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/master/install.sh)"
Windows - From a pre-built binary
このアップデート方法は、Windows 10、8.1、または 7 (SP1、PowerShell 3.0付き) の x86-64でのみで動作します。
- PowerShell を開く ("手順")
- PowerShellで次を実行します
iex "& { $(irm 'https://raw.githubusercontent.com/onflow/flow-cli/master/install.ps1') }"
Uninstalling Flow CLI
Flow CLIを削除するには、
事前にビルド済みのバイナリを使用してインストールした場合は、以下のコマンドを使用して削除できます。
- macOS:
rm /usr/local/bin/flow
- Linux:
rm ~/.local/bin/flow
- Windows:
rm ~/Users/{user}/AppData/Flow/flow.exe
Homebrewを使用してインストールした場合は、
brew uninstall flow-cli
コマンドを使用して削除できます。
Installing versions before 0.42.0
v0.42.0より前のバージョンをインストールしたい場合は、別のインストールコマンドを使用する必要があります。
Linux/macOS
https://raw.githubusercontent.com/onflow/flow-cli/v0.41.3/install.ps1
sh -ci "$(curl -fsSL https://raw.githubusercontent.com/onflow/flow-cli/v0.41.3/install.sh)" -- v0.41.2
Windows
iex "& { $(irm 'https://raw.githubusercontent.com/onflow/flow-cli/master/install.ps1') }"
Last updated on Nov 5, 2024 by Alex
翻訳元->https://developers.flow.com/tools/flow-cli/install