root権限がない所でrubyを使えるようにする
root権限がない所でrbenvを使ってrubyをインストールしようとしたら、以下の事象が発生した。
...
The Ruby openssl extension was not compiled.
The Ruby readline extension was not compiled.
The Ruby zlib extension was not compiled.
ERROR: Ruby install aborted due to missing extensions
Try running `yum install -y openssl-devel readline-devel zlib-devel` to fetch missing dependencies.
...
どうやらopenssl, readline, zlibが不足しているらしい。言われた通りにyum installしたいのだが、まぁroot権限がないので。
TMPDIR=/path/to/tmp/dir
INSTALLDIR=/path/to/install/dir
# readline
cd $TMPDIR
wget http://ftp.gnu.org/gnu/readline/readline-4.3.tar.gz
tar xzvf readline-4.3.tar.gz
cd readline-4.3
./configure --prefix=$INSTALLDIR/readline
make -j
make install
# openssl
cd $TMPDIR
wget www.openssl.org/source/openssl-1.1.1c.tar.gz
tar xf openssl-1.1.1c.tar.gz
cd openssl-1.1.1c
./config --prefix=$INSTALLDIR/openssl
make -j build_libs
make install_sw
# zlib
cd $TMPDIR
wget http://zlib.net/zlib-1.2.11.tar.gz
tar xzvf zlib-1.2.11.tar.gz
cd zlib-1.2.11
./configure --prefix=$INSTALLDIR/zlib
make -j
make install
さて、全てを入手したが、それをどうやって教えてあげればよいのだろうか。
答えは以下の通り。
RUBY_CONFIGURE_OPTS='--with-openssl-dir=$INSTALLDIR/openssl --with-zlib-dir=$INSTALLDIR/zlib --with-readline-dir=$INSTALLDIR/readline' rbenv install 2.6.3
--with-HOGE-dir
を使うことで場所を教えることができる。これでインストールでーきた。
Author And Source
この問題について(root権限がない所でrubyを使えるようにする), 我々は、より多くの情報をここで見つけました https://qiita.com/yanagi3150/items/535374f72758610234e8著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .