-
ubuntu 12.04에 rbenv & bundler 설치Ruby 2014. 2. 25. 09:00
- 필요한 라이브러리 설치
sudo apt-get install zlib1g-dev openssl libopenssl-ruby1.9.1 libssl-dev libruby1.9.1 libreadline-dev git-core
sudo apt-get install make
git clone git://github.com/sstephenson/rbenv.git .rbenv
echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
exec $SHELL
mkdir -p ~/.rbenv/plugins
cd ~/.rbenv/plugins
git clone git://github.com/sstephenson/ruby-build.git
rbenv install 1.9.3-p194
rbenv rehash
rbenv global 1.9.3-p194
source ~/.bashrc
- 설치후 ruby 경로가 변경됨.
#/home/ubuntu/.rbenv/shims/ruby;
- bundler 설치 및 의존 gem 설치
gem install bundler
bundle install
- 참고
# http://www.stehem.net/2012/05/08/how-to-install-ruby-with-rbenv-on-ubuntu-12-04.html
'Ruby' 카테고리의 다른 글
rvm(Ruby Version Manager) 설치 및 사용 (0) 2014.08.18 ruby sinatra development, production, test 모드 구분 (0) 2014.03.10 nginx + passenger 설치하기 (0) 2014.03.04 사용자 Gem 만들어서 rubygems.org에 올리기 (0) 2014.02.26 댓글