0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Install Instructions

Last updated at Posted at 2024-11-18

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でのみで動作します。

  1. PowerShell を開く ("手順")
  2. 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でのみで動作します。

  1. PowerShell を開く ("手順")
  2. 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

Flow BlockchainのCadence version1.0ドキュメント (Install Instructions)

Previous << Flow CLI

Next >> Super Commands

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?