Debian11.2 にHomebrewをインストールする方法

環境
$ cat /etc/debian_version
debian 11.2
sudo所属グループユーザcft

Homebrewのインストール方法
1.必要なパッケージをインストールします。

cft@arkgame:~$ sudo apt-get install build-essential curl file git

2.Homebrewをインストールします

cft@arkgame:~$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

3.利用設定を行います

cft@arkgame:~$ test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)
cft@arkgame:~$ test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
cft@arkgame:~$ test -r ~/.bash_profile && echo "eval $($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile
cft@arkgame:~$ echo "eval $($(brew --prefix)/bin/brew shellenv)" >>~/.profile

4.brewバージョンを確認します

cft@arkgame:~$ brew --version
Homebrew 3.3.16
Homebrew/homebrew-core (git revision 4c3b3e99bde; last commit 2022-02-27)

5.helloモジュールをインストールします

$ brew install hello

6.実行確認

cft@arkgame:~$ hello
世界よ、こんにちは!

 

Debian 11

Posted by arkgame