0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

M1にてhomebrewをinstall後vscodeをinstallするまで

Posted at

homebrew の install

  • ターミナルを起動してホームディレクトリで次のコマンドを実行
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

基本的な方針の参考にさせて頂いたzennの記事
【Mac M1】VSCodeのインストール方法
(参考:リンクはこちら)

  • brewコマンドが使えない
    brew -vなどのコマンドを使用すると次のようなエラーが出たのでどうやらパスを通すことでエラーの解消をすることができた。

  • パスを通す

echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/ユーザ名/.zprofile

パスを通す必要性とその方法に関して参考にした記事。
(参考:記事のリンクはこちら)

vscode の install

ここまででhomebrewが使えるようになったので、それを使ってvscodeをinstallする。コマンドは次の通りである。

brew install visual-studio-code

私の場合はこれにてinstall完了である。

参考

https://zenn.dev/imasaka0909/articles/deaba02e722242
https://brew.sh/index_ja
https://qiita.com/___fff_/items/17655df4e80ebadd8fc3
https://chicog.me/posts/sr4qml2wg

経緯

  • macを買い替えたが移行作業が遅かったの環境整理を始めた。
  • 今まで趣味だったエンジニアだが、仕事になったので情報共有の練習も兼ねて記事を書いた。
0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?