방금 설치하려고 했는데아 맙소사. 실행하려고 하면 다음 오류가 발생합니다 rvm
.
zsh: command not found: rvm
새 탭을 열려고 하면 다음 오류가 발생합니다.
/Users/jack/.zshrc:source:34: no such file or directory: /Users/jack/.oh-my-zsh/oh-my-zsh.sh
/Users/jack/.zshrc:source:38: no such file or directory: .bashrc
이것은 내 .zshrc
파일입니다:
# Path to your oh-my-zsh configuration.
ZSH=$HOME/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
ZSH_THEME="robbyrussell"
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
# Set to this to use case-sensitive completion
# CASE_SENSITIVE="true"
# Comment this out to disable weekly auto-update checks
# DISABLE_AUTO_UPDATE="true"
# Uncomment following line if you want to disable colors in ls
# DISABLE_LS_COLORS="true"
# Uncomment following line if you want to disable autosetting terminal title.
# DISABLE_AUTO_TITLE="true"
# Uncomment following line if you want red dots to be displayed while waiting for completion
# COMPLETION_WAITING_DOTS="true"
# Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*)
# Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
plugins=(git bundler brew gem rvm cscairns)
source $ZSH/oh-my-zsh.sh
# Customize to your needs...
source .bashrc
export PATH=/usr/local/bin:$PATH
이러한 오류를 수정하려면 어떻게 해야 합니까?
답변1
설치 시 zsh
Oh My Zsh가 설치되지 않습니다. oh-my-zsh.sh
이는 파일이 전혀 없는 경우(제 경우였습니다) 설명할 수 있습니다.
당신은 설치할 수 있습니다아 맙소사 Zsh실행하여
sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
답변2
이를 위해:
/Users/jack/.zshrc:source:34: no such file or directory: /Users/jack/.oh-my-zsh/oh-my-zsh.sh
문제는 다음 줄입니다.
source $ZSH/oh-my-zsh.sh
oh-my-zsh.sh
파일을 호출하지 않았습니다./Users/jack/.oh-my-zsh
이를 위해:
/Users/jack/.zshrc:source:38: no such file or directory: .bashrc
.bashrc
문제는 본질적으로 위와 동일합니다. 파일이 없습니다./Users/jack/
당신이 $ZSH
가리킨 /Users/jack/.oh-my-zsh
디렉터리에 해당 이름의 파일이 없는 것 같습니다.zsh.sh
원래 질문 ( zsh: command not found: rvm
)에 따르면 문제는 명령이 rvm
사용자 위치에 없으며 분명히 시스템 전체 설정이 무엇이든 플러스를 $PATH
가리킨다는 것 입니다./usr/local/bin
find / -name "rvm"
파일 시스템의 실제 위치를 확인 rvm
하고 다음과 같이 $PATH 변수를 업데이트하는 것이 좋습니다 .export PATH=/path/to/rv/:$PATH
답변3
이 문제에 대한 빠른 수정
/Users/jack/.zshrc:source:34: no such file or directory: /Users/jack/.oh-my-zsh/oh-my-zsh.sh
실행 가능하고 실행 가능하게 만드십시오.
cd .oh-my-zsh/ && chmod 744 oh-my-zsh.sh
그런 다음 실행 exec zsh
하여 셸을 다시 시작합니다. 오류가 발생하지 않고 선택한 테마가 실행되고 있으면 그대로 진행해도 됩니다.
답변4
거기에 있는 기존 .oh-my-zsh 파일을 삭제 home/username/.oh-my-zsh
하고 runnung을 통해 다시 설치했더니 sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
문제가 해결되었습니다.