Last login: Sat Apr 29 18:13:19 on ttys000
-bash: export: `export PATH="/Users/自分のユーザーネーム$ /.rbenv/shims:${PATH}"
export RBENV_SHELL=bash
source '/usr/local/Cellar/rbenv/1.1.0/libexec/../completions/rbenv.bash'
command rbenv rehash 2>/dev/null
rbenv() {
local command
command="$1"
if [ "$#" -gt 0 ]; then
shift
fi
case "$command" in
rehash|shell)
eval "$(rbenv "sh-$command" "$@")";;
*)
command rbenv "$command" "$@";;
esac
}': not a valid identifier
-bash: touch: command not found
MacBook-Pro:~ 自分のユーザーネーム$ $
- まず最初にパスを確認するため、
.bash_profile
ファイルをテキストエディタで開く。
-
.bash_profile
は隠しファイルなので、Finder上でcommand + shift + .
を同時に押すことで確認できる。
- ファイルを開いたら、以下のようになっていた。
export PATH=/usr/local/bin:/usr/local/sbin:$PATHeval "$(rbenv init -)"
export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"
export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"
eval "$(rbenv init -)"
- ここで注目すべきなのが1行目。
export ~ $PATH
とeval "$(rbenv init -)"
は別の行にあるべきものなのにくっついて書かれている。今回は4行目にrbenvのパスがあるので1行目を削除したらエラーは表示されなくなった。
参考サイト: Macのターミナルで起動画面時に以下のようなエラーがでてきてしまいました。