node.jsやらnpmをインストールする際に
パスを通すためにbash_profileをいじっていたら、
ターミナルを開くたびにこのようなエラーがでてしまいます。
Last login: Tue Nov 30 23:59:45 on ttys000 -bash: ‘export: command not found -bash: ‘export: command not found -bash: ‘export: command not found -bash: /Users/gotoukouji/.bash_profile: line 47: syntax error near unexpected token `newline' -bash: /Users/gotoukouji/.bash_profile: line 47: ` <<< conda init <<<'
open bash_profileで開いたのですが、中身がなんのことやらわかりません。
‘export PATH=/usr/local/bin:�� source .bash_profile ‘export PATH=/usr/local/bin:�� source .bash_profile ‘export PATH=/usr/local/bin:�� source .bash_profile export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" # added by Anaconda3 2019.03 installer # >>> conda init >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$(CONDA_REPORT_ERRORS=false '/anaconda3/bin/conda' shell.bash hook 2> /dev/null)" if [ $? -eq 0 ]; then \eval "$__conda_setup" else if [ -f "/anaconda3/etc/profile.d/conda.sh" ]; then . "/anaconda3/etc/profile.d/conda.sh" CONDA_CHANGEPS1=false conda activate base else \export PATH="/anaconda3/bin:$PATH" fi if [ -f ~/.bashrc ] ; then . ~/.bashrc fifi unset __conda_setup # <<< conda init <<< export PYENV_ROOT="$HOME/.pyenv" export PATH="$PYENV_ROOT/bin:$PATH" eval "$(pyenv init -)" # added by Anaconda3 2019.10 installer # >>> conda init >>> # !! Contents within this block are managed by 'conda init' !! __conda_setup="$(CONDA_REPORT_ERRORS=false '/Users/gotoukouji/opt/anaconda3/bin/conda' shell.bash hook 2> /dev/null)" if [ $? -eq 0 ]; then \eval "$__conda_setup" else if [ -f "/Users/gotoukouji/opt/anaconda3/etc/profile.d/conda.sh" ]; then . "/Users/gotoukouji/opt/anaconda3/etc/profile.d/conda.sh" CONDA_CHANGEPS1=false conda activate base else \export PATH="/Users/gotoukouji/opt/anaconda3/bin:$PATH" fi fi unset __conda_setup fi# <<< conda init <<<
(#は見にくくなるため大文字の#に変更)
一番最後の47行目でエラーが出ていますが、なにをどう修正すればいいのかわかりません。
ご教授よろしくおねがいします。
見にくいので、エラーメッセージと、コードは、それぞれ、
```
という行と
```
という行で挟んだ間にコピペしてください。
回答1件
あなたの回答
tips
プレビュー