sudo yum -y install gcc
sudo yum -y install make
sudo yum -y install openssl
sudo yum -y install openssl-devel
sudo yum -y install gcc-c++
sudo yum install -y mysql-devel
sudo yum install -y readline-devel
sudo yum install -y libxml2-devel
sudo yum install -y libxslt-devel
sudo yum install -y bzip2
$ sudo yum -y install git
$ git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
$ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bash_profile
$ echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
$ exec $SHELL -l
Die Installation von rbenv kann jedoch nicht mit dieser Geschwindigkeit durchgeführt werden.
$ rbenv install -v 2.6.2
rbenv: no such command `install'
Wenn Sie sich die Hilfe ansehen, sehen Sie, dass es keinen Installationsbefehl gibt.
$ rbenv -h
Usage: rbenv <command> [<args>]
Some useful rbenv commands are:
commands List all available rbenv commands
local Set or show the local application-specific Ruby version
global Set or show the global Ruby version
shell Set or show the shell-specific Ruby version
rehash Rehash rbenv shims (run this after installing executables)
version Show the current Ruby version and its origin
versions List installed Ruby versions
which Display the full path to an executable
whence List all Ruby versions that contain the given executable
Für die Installation benötigen Sie das Plugin "Ruby-Build". Installieren Sie es also.
$ git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build
Wenn Sie sich die Hilfe ansehen, können Sie sehen, dass die Installation (und Deinstallation) hinzugefügt wurde.
$ rbenv -h
Usage: rbenv <command> [<args>]
Some useful rbenv commands are:
commands List all available rbenv commands
local Set or show the local application-specific Ruby version
global Set or show the global Ruby version
shell Set or show the shell-specific Ruby version
install Install a Ruby version using ruby-build
uninstall Uninstall a specific Ruby version
rehash Rehash rbenv shims (run this after installing executables)
version Show the current Ruby version and its origin
versions List installed Ruby versions
which Display the full path to an executable
whence List all Ruby versions that contain the given executable
See `rbenv help <command>' for information on a specific command.
For full documentation, see: https://github.com/rbenv/rbenv#readme
rbenv install -v 2.6.2
startet die Installation.
Nachdem die Installation abgeschlossen ist, können Sie sie mit rbenv version
überprüfen.
$ rbenv versions
* system
2.6.2
Die Protokolldatei zum Zeitpunkt der Installation hat den Dateinamen "ruby-build.xxxxxxxxxxxxxxx.log" Es wird unter / tmp / gespeichert.
Recommended Posts