OS 설치하기 ( VMware + Ubuntu )
# VMware 설치 : VMware Workstation 12 Player 다운로드 & 설치
# Ubuntu ISO 다운로드 : www.ubuntu.com , Download -> Desktop
참조 : http://recipes4dev.tistory.com/111
Ruby on Rails ( ROR ) 설치 하기 with RVM
# gpg command contact a public key server and request a key
> gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 7D2BAF1CF37B13E2069D6956105BD0E739499BDB |
# curl command download the RVM installation script
> cd /tmp > curl -sSL https://get.rvm.io -o rvm.sh > cat /tmp/rvm.sh | bash -s stable --rails |
- Add $PATH : ~/.rvm/scripts/rvm 또는 ./
# install specific ruby and rails versions
>rvm install 2.4.1 >rvm use 2.4.1 >gem install rails -v 4.2.7 |
>rvm list known >rvm list >gem search '^rails$' --all |
# install java script runtime (node.js)
참조 : https://www.digitalocean.com/community/tags/ruby-on-rails?type=tutorials
'Web Tech. > Ruby on Rails' 카테고리의 다른 글
Cloud9 Ruby DB 변경 하기 (sqlite3 -> mysql ) (0) | 2018.10.16 |
---|---|
Cloud9 Ruby Rails의 MySQL설정 (0) | 2018.10.11 |