简体   繁体   中英

Rbenv and ruby build on Ubuntu

I have install rbenv and ruby-build on Ubuntu DISTRIB_RELEASE 16.04 but anytime I start my terminal I get the message below on the terminal. Any help would be greatly appreciated.

# Load rbenv automatically by appending
# the following to your profile:

eval "$(rbenv init -)"
export PATH="/home/godfred/.rbenv/shims:${PATH}"
export RBENV_SHELL=bash
source '/home/godfred/.rbenv/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
}
# Load rbenv automatically by appending
# the following to your profile:

eval "$(rbenv init -)"

Add these configuration to your .bashrc file. Those will be load rbenv during terminal start.

if [ -d $HOME/.rbenv ]; then
    export RBENV_ROOT="$HOME/.rbenv"
    export PATH="$RBENV_ROOT/bin:$PATH"
    eval "$(rbenv init -)"
fi

Note: your rbenv installation path can be different. Check before set those to you .bashrc file.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM