macOS を Sequoia にアップデートしたのでその際のメモです.
インストールしたのは以下のアプリ
AppCleaner
Pages
Numbers
Keynote
TeX
Visual Studio Code
Zoom
Teams
Homebrew
gnuplot
Jupyter
Julia
RStudio
Evernote
Adobe Creative Cloud
iMovie
mi
PrimeVideo
Discord
LINE
Messenger
昔はもっと色々とインストールしていましたが,もう,このくらいでいいや...という感じにしてみました.以下の「つまづいた箇所・変更した箇所」以外は,macOS Big Sur をインストールした際と同じ感じでいけました.
つまづいた箇所・変更した箇所
Homebrew
公式ページからインストールのコマンドをコピーして実行して,インストールが終了したのちに,以下のように"brew"コマンドを受け付けてくれないというトラブルが発生しました.
% brew --version
zsh: command not found: brew
そこで,パスを通すために,ターミナルから以下のコマンド
% (echo; echo 'eval "$(/opt/homebrew/bin/brew shellenv)"') >> /Users/user/.zprofile
を実行したら,brew コマンドを受け付けてくれるようになりました.なお,上記のコマンドの"user"にはログインしているユーザー名が入ります.brew コマンドを受け付けてくれるようになった様子は以下のような感じです.
% brew update
==> Updating Homebrew...
Already up-to-date.
% brew --version
Homebrew 4.4.20
公式ページには,以下のコマンドを実行するようにとあります.
% curl -fsSL https://install.julialang.org | sh
% brew install --cask julia
% sudo xcodebuild -license accept
Password:
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
% julia
_
_ _ _(_)_ | Documentation: https://docs.julialang.org
(_) | (_) (_) |
_ _ _| |_ __ _ | Type "?" for help, "]?" for Pkg help.
| | | | | | |/ _` | |
| | |_| | | | (_| | | Version 1.11.3 (2025-01-21)
_/ |\__'_|_|_|\__'_| | Official https://julialang.org/ release
|__/ |
julia>
julia> using IJulia
julia> notebook()
0 件のコメント :
コメントを投稿