J'ai installé Homebrew sur Amazon Linux2, je vais donc laisser une note en guise de rappel.
Installez en vous référant à Homebrew.
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
Ensuite, s'il n'y a pas de chemin, l'avertissement suivant s'affichera.
Warning: /home/linuxbrew/.linuxbrew/bin is not in your PATH.
Par conséquent, vous pouvez l'utiliser en exécutant la commande suivante.
export PATH=/home/linuxbrew/.linuxbrew/bin:$PATH
Assurez-vous que Homebrew est installé au cas où.
brew -v
Il a été recommandé d'installer Nous vous recommandons d'installer GCC: brew install gcc
, il semble donc préférable d'installer gcc également.
brew install gcc
Notes et recommandations
Warning: /home/linuxbrew/.linuxbrew/bin is not in your PATH.
==> Installation successful!
==> Homebrew has enabled anonymous aggregate formulae and cask analytics.
Read the analytics documentation (and how to opt-out) here:
https://docs.brew.sh/Analytics
No analytics data has been sent yet (or will be during this `install` run).
==> Homebrew is run entirely by unpaid volunteers. Please consider donating:
https://github.com/Homebrew/brew#donations
==> Next steps:
- Run `brew help` to get started
- Further documentation:
https://docs.brew.sh
- Install the Homebrew dependencies if you have sudo access:
sudo yum groupinstall 'Development Tools'
See https://docs.brew.sh/linux for more information
- Add Homebrew to your PATH in /home/ec2-user/.bash_profile:
echo 'eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)' >> /home/ec2-user/.bash_profile
eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
- We recommend that you install GCC:
brew install gcc
référence https://www.it-swarm-ja.tech/ja/ruby/homebrew%E3%81%AE%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%82%A8%E3%83%A9%E3%83%BCbrew%E3%82%B3%E3%83%9E%E3%83%B3%E3%83%89%E3%81%8C%E8%A6%8B%E3%81%A4%E3%81%8B%E3%82%8A%E3%81%BE%E3%81%9B%E3%82%93/1069923138/
Recommended Posts