Estoy recibiendo esta línea cada vez que abro mi terminal. Todo lo demás parece estar funcionando bien, pero me gustaría arreglarlo ya que no creo que sea una buena señal.
Last login: Mon Feb 19 09:21:05 on ttys000
-bash: export: 'Workbooks.app/Contents/SharedSupport/path-bin': not a
valid identifier
Rachels-MacBook-Pro:~ rachelromine$
He revisado mi perfil bash y esto es lo que parece
eval export PATH="/Users/rachelromine/.rbenv/shims:${PATH}"
export RBENV_SHELL=bash
source
'/usr/local/Cellar/rbenv/1.0.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
}
# Setting PATH for Python 3.6
# The original version is saved in .bash_profile.pysave
PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
export PATH
test -e "${HOME}/.iterm2_shell_integration.bash" && source
"${HOME}/.iterm2_shell_integration.bash"
Creo que debo haber instalado algo que cuando está mal. Si tiene alguna idea de lo que instalé, eso podría haberlo provocado, pero sería extremadamente útil, pero principalmente quiero corregir el problema del identificador válido que aparece cada vez que abro mi terminal.