运行Ruby命令时出现“ zsh:找不到命令:”

时间:2020-11-11 11:23:35

标签: ruby shell path zsh macos-catalina

我仍然可以使用诸如ls或pwd之类的核心命令,但是某些与Ruby相关的命令未被识别。不知道这是否适用于其他语言,但我似乎对npm或类似内容没有任何疑问。

如果有帮助,我也在使用 MacOS卡塔利娜 版本10.15.7

run `bundle update --bundler`
zsh: command not found: run

我不知道如何重置zsh或如何解决此问题。这是$ PATH变量的内容:

/bin:/usr/bin:/usr/local/bin:/Users/peter/bin:/usr/local/bin:/Users/peter/bin:/usr/local/bin:/Users/peter/.rvm/gems/ruby-2.7.0/bin:/Users/peter/.rvm/gems/ruby-2.7.0@global/bin:/Users/peter/.rvm/rubies/ruby-2.7.0/bin:/Users/peter/bin:/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/peter/.rvm/bin:/Users/peter/.rvm/bin:/Users/peter/.rvm/bin

当我在终端'vim〜/ .zshrc'中运行时,它返回以下内容

# If you come from bash you might have to change your $PATH.
export PATH=$HOME/bin:/usr/local/bin:$PATH

# Path to your oh-my-zsh installation.
export ZSH="/Users/peter/.oh-my-zsh"

# Set name of the theme to load --- if set to "random", it will
# load a random theme each time oh-my-zsh is loaded, in which case,
# to know which specific one was loaded, run: echo $RANDOM_THEME
# See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes
ZSH_THEME="robbyrussell"

# Set list of themes to pick from when loading at random
# Setting this variable when ZSH_THEME=random will cause zsh to load
# a theme from this variable instead of looking in $ZSH/themes/
# If set to an empty array, this variable will have no effect.
# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )

# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"

# Uncomment the following line to use hyphen-insensitive completion.
# Case-sensitive completion must be off. _ and - will be interchangeable.
# HYPHEN_INSENSITIVE="true"

# Uncomment the following line to disable bi-weekly auto-update checks.
# DISABLE_AUTO_UPDATE="true"

# Uncomment the following line to automatically update without prompting.
# DISABLE_UPDATE_PROMPT="true"

# Uncomment the following line to change how often to auto-update (in days).
# export UPDATE_ZSH_DAYS=13

# Uncomment the following line if pasting URLs and other text is messed up.
# DISABLE_MAGIC_FUNCTIONS="true"

# Uncomment the following line to disable colors in ls.
# DISABLE_LS_COLORS="true"

# Uncomment the following line to disable auto-setting terminal title.
# DISABLE_AUTO_TITLE="true"

# Uncomment the following line to enable command auto-correction.
# ENABLE_CORRECTION="true"

# Uncomment the following line to display red dots whilst waiting for completion.
# COMPLETION_WAITING_DOTS="true"

# Uncomment the following line if you want to disable marking untracked files
# under VCS as dirty. This makes repository status check for large repositories
# much, much faster.
# DISABLE_UNTRACKED_FILES_DIRTY="true"

# Uncomment the following line if you want to change the command execution time
# stamp shown in the history command output.
# You can set one of the optional three formats:
# "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
# or set a custom format using the strftime function format specifications,
# see 'man strftime' for details.
# HIST_STAMPS="mm/dd/yyyy"

# Would you like to use another custom folder than $ZSH/custom?
# ZSH_CUSTOM=/path/to/new-custom-folder

# Which plugins would you like to load?
# ZSH_CUSTOM=/path/to/new-custom-folder

# Which plugins would you like to load?
# Standard plugins can be found in $ZSH/plugins/
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
# Example format: plugins=(rails git textmate ruby lighthouse)
# Add wisely, as too many plugins slow down shell startup.
plugins=(git)

source $ZSH/oh-my-zsh.sh

# User configuration

# export MANPATH="/usr/local/man:$MANPATH"

# You may need to manually set your language environment
# export LANG=en_US.UTF-8

# Preferred editor for local and remote sessions
# if [[ -n $SSH_CONNECTION ]]; then
#   export EDITOR='vim'
# else
#   export EDITOR='mvim'
# fi

# Compilation flags
# export ARCHFLAGS="-arch x86_64"

# Set personal aliases, overriding those provided by oh-my-zsh libs,
# plugins, and themes. Aliases can be placed here, though oh-my-zsh
# users are encouraged to define aliases within the ZSH_CUSTOM folder.
# For a full list of active aliases, run `alias`.
#
# Example aliases
# alias zshconfig="mate ~/.zshrc"
# alias ohmyzsh="mate ~/.oh-my-zsh"
# alias brewup=‘brew update; brew upgrade; brew cleanup; brew doctor’

# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
export PATH

您知道问题是什么还是如何解决?如果您需要我提供更多信息,请告诉我。我以前从未遇到过这个问题,所以不知道如何解决。

1 个答案:

答案 0 :(得分:0)

修复 SHELL PATH 环境变量

要么没有使用正确的SHELL变量导出PATH,要么发生了其他一些与PATH相关的问题。您可以通过多种方式解决此问题,但我建议其中两种。

反引号在您定义的外壳程序(例如ENV['SHELL'])中运行命令,因此,如果zsh不是您当前的 SHELL ,或者您的外壳程序不在当前PATH中,则你会有问题。在运行应用程序之前更新PATH,或将其添加到Ruby脚本中,如下所示:

ENV['SHELL'] = '/bin/zsh'
ENV['PATH']  = [ENV['SHELL'], ENV['PATH']].join ?:

使用内核#system绕过Shell

或者,如果不需要捕获标准输出,则可以使用Kernel#system的无外壳版本。例如:

# this may not work if you're not using a system ruby
system('/path/to/bundle', 'update', '--bundler')

更多全局修复程序

无论采用哪种方法,问题都可能相同:您没有导出适当的 SHELL PATH 变量,因此您可能需要查看在:

  1. 您的默认用户外壳程序,例如dscl . -read ~/ UserShell
  2. 您的Shell的各种启动文件。
  3. 您的终端设置,以确保它正在启动登录Shell。
在您的Shell环境或IDE中,

某事的设置都不正确,因此您需要对其进行跟踪。这应该给您一个良好的开端。

相关问题