mac(macOS Catalina 10.15.7)においてPostgreSQLのインストールを進めていますが、「Command not found」エラーが発生しているため、ガイドに基づきPathを通そうとしていますが、うまく進めません。
(Postgre10系のインストールです)
- .bash_profileは存在
- vi ~/.bash_profileで.bash_profileを実行
- [i]キーを押して編集モードにしてから export PATH=$PATH:/usr/local/Cellar/postgresql@10/10.10/bin を入力しようとする
- 上記の時に、そもそも入力できない画面になるため、先に進めない
i# Enable tab completion source ~/.udacity-terminal-config/git-completion.bash # Change command prompt source ~/.udacity-terminal-config/git-prompt.sh # colors! red="[\033[38;5;203m]" green="[\033[38;05;38m]" blue="[\033[0;34m]" reset="[\033[0m]" export GIT_PS1_SHOWDIRTYSTATE=1 # '\u' adds the name of the current user to the prompt # '$(__git_ps1)' adds git-related stuff # '\W' adds the name of the current directory export PS1="$red\u$green$(__git_ps1)$blue \W $ $reset"
上記のような画面になってしまい、抜け出すことも入力することもできないため、閉じてやり直し。
手詰まりになっており、どのような解決方法があるのかご教示いただけますと幸いです。