Java学习者论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

手机号码,快捷登录

恭喜Java学习者论坛(https://www.javaxxz.com)已经为数万Java学习者服务超过8年了!积累会员资料超过10000G+
成为本站VIP会员,下载本站10000G+会员资源,购买链接:点击进入购买VIP会员
JAVA高级面试进阶视频教程Java架构师系统进阶VIP课程

分布式高可用全栈开发微服务教程

Go语言视频零基础入门到精通

Java架构师3期(课件+源码)

Java开发全终端实战租房项目视频教程

SpringBoot2.X入门到高级使用教程

大数据培训第六期全套视频教程

深度学习(CNN RNN GAN)算法原理

Java亿级流量电商系统视频教程

互联网架构师视频教程

年薪50万Spark2.0从入门到精通

年薪50万!人工智能学习路线教程

年薪50万!大数据从入门到精通学习路线年薪50万!机器学习入门到精通视频教程
仿小米商城类app和小程序视频教程深度学习数据分析基础到实战最新黑马javaEE2.1就业课程从 0到JVM实战高手教程 MySQL入门到精通教程
查看: 985|回复: 0

Install Ruby on Rails on Ubuntu

[复制链接]
  • TA的每日心情
    开心
    2023-3-18 00:22
  • 签到天数: 2 天

    [LV.1]初来乍到

    发表于 2013-3-11 22:19:43 | 显示全部楼层 |阅读模式
    Ruby on Rails is an application stack that provides developers with a framework to quickly create a variety of web applications.

    Ruby on Rails does take a little while to install on a virtual server, but luckily there are a lot of helpful tools to make this process as easy as possible.

    You can run this tutorial on your droplet as a user with sudo privileges. You can check out how to set that up here: Ubuntu Server Setup

    Step One— Install Ruby with RVM
    Before we do anything else, we should run a quick update to make sure that all of the packages we download to our VPS are up to date:sudo apt-get update
    Once that's done, we can start installing RVM, Ruby Version Manager. This is a great program that lets you use several versions of Ruby on one server; however, in this case, we will just use it to install the latest version of Ruby on the droplet.

    If you do not have curl on your system, you can start by installing it:sudo apt-get install curl
    To install RVM, open terminal and type in this command:\curl -L https://get.rvm.io | bash -s stable
    After it is done installing, load RVM. You may first need to exit out of your shell session and start up a new one.source ~/.rvm/scripts/rvm
    In order to work, RVM has some of its own dependancies that need to be installed. You can see what these are:rvm requirements
    In the text that RVM shows you, look for this paragraph.Additional Dependencies:# For Ruby / Ruby HEAD (MRI, Rubinius, & REE), install the following:  ruby: /usr/bin/apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config
    Just follow the instructions to get your system up to date with all of the required dependancies. sudo apt-get install build-essential openssl libreadline6 libreadline6-dev curl git-core zlib1g zlib1g-dev libssl-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt-dev autoconf libc6-dev ncurses-dev automake libtool bison subversion pkg-config
    On occasion the zlib package may be reported as missing. The RVM page describes the issue and the solution in greater detail here.

    Step Two—Install Ruby
    Once you are using RVM, installing Ruby is easy.rvm install 1.9.3
    Ruby is now installed. However, since we accessed it through a program that has a variety of Ruby versions, we need to tell the system to use 1.9.3 by default.rvm use 1.9.3 --default
    Step Three—Install RubyGems
    The next step makes sure that we have all the required components of Ruby on Rails. We can continue to use RVM to install gems; type this line into terminal. rvm rubygems current
    Step Four—Install Rails
    Once everything is set up, it is time to install Rails.

    To start, open terminal and type in:gem install rails
    This process may take a while, be patient with it. Once it finishes you will have Ruby on Rails installed on your droplet.

    See MoreOnce you have installed Ruby on Rails on your server, you can proceed to Create a SSL Certificate for your site or Install an FTP server
    this article come from:https://www.digitalocean.com/community/articles/how-to-install-ruby-on-rails-on-ubuntu-12-04-lts-precise-pangolin-with-rvm

    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|手机版|Java学习者论坛 ( 声明:本站资料整理自互联网,用于Java学习者交流学习使用,对资料版权不负任何法律责任,若有侵权请及时联系客服屏蔽删除 )

    GMT+8, 2024-5-12 08:28 , Processed in 0.369093 second(s), 33 queries .

    Powered by Discuz! X3.4

    © 2001-2017 Comsenz Inc.

    快速回复 返回顶部 返回列表