SwiftUIの基本を身につけたい方はこちら

【Mac】open ~/.zshrcをしたときに、「The file /Users/xxx/.zshrc does not exist.」(.zshrcが存在しない)の解決方法

Macでopen ~/.zshrcをしたときに以下のエラーが表示されました。

The file /Users/xxx/.zshrc does not exist.

原因

ただ単に.zshrcというファイルが存在しないからです。

解決方法

単純に.zshrcを作成すれば良いです。

以下のコマンドを打てば.zshrcが作成されます。

touch .zshrc

評価