前提・実現したいこと
macbookair ターミナルを初期値に戻したいです。
ここに質問の内容を詳しく書いてください。
macbookair rubyの環境構築する際に
ターミナルでを開くと以下のような文章が出るようになってしまいました
発生している問題・エラーメッセージ
Last login: Wed Sep 30 13:36:50 on ttys000 /Users/devmac1/.zshrc:1: no such file or directory: evalexport PATH="/Users/devmac1/.rbenv/shims:${PATH}"\nexport RBENV_SHELL=zsh\nsource '/usr/local/Cellar/rbenv/1.1.2/libexec/../completions/rbenv.zsh'\ncommand rbenv rehash 2>/dev/null\nrbenv() {\n local command\n command="${1:-}"\n if [ "$#" -gt 0 ]; then\n shift\n fi\n\n case "$command" in\n rehash|shell)\n eval "$(rbenv "sh-$command" "$@")";;\n *)\n command rbenv "$command" "$@";;\n esac\n} /Users/devmac1/.zshrc:2: no such file or directory: evalexport PATH="/Users/devmac1/.rbenv/shims:${PATH}"\nexport RBENV_SHELL=zsh\nsource '/usr/local/Cellar/rbenv/1.1.2/libexec/../completions/rbenv.zsh'\ncommand rbenv rehash 2>/dev/null\nrbenv() {\n local command\n command="${1:-}"\n if [ "$#" -gt 0 ]; then\n shift\n fi\n\n case "$command" in\n rehash|shell)\n eval "$(rbenv "sh-$command" "$@")";;\n *)\n command rbenv "$command" "$@";;\n esac\n} rbenv: no such command `init-' rbenv: no such command `init-' devmac1@DevMac1noMacBook-Air ~ %
試したこと
echo 'eval"$(rbenv init -)"' >>~/.zshrc
や
以下のググった内容をzshrcに変えて試してみました。
(1) rbenvへのPATHを通す
$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
(2) rbenvを使うために必要な「rbenv init -」コマンドを設定
$ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
(3) 設定の反映
$ source ~/.bash_profile
(4) rbenvのインストール
$ brew install rbenv ruby-build
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー