0

我最近刚刚安装了 ubuntu,我正在尝试让 ruby​​ on rails 启动并运行。我正在学习本教程 - http://ruby.railstutorial.org/ruby-o...c-introduction

当我运行 $ rails -v 或 $ rails new first_app 我收到以下错误...

程序 'rails' 可以在以下软件包中找到: *rails *ruby-railties-3.2 尝试:sudo apt-get install

作为 ubuntu 和 rails 的新手,我不知道在这里做什么。有什么建议么?谢谢。

4

3 回答 3

0

安装 ruby​​、rails 等的最佳方式是通过 RVM。按照以下链接。他们会引导你完成。

http://www.unfoldingcode.com/2011/05/using-rvm-to-install-rails-31-on-ubuntu.html http://siliconchaos.com/2011/07/installing-rails-with-rvm /

于 2012-11-18T14:10:04.567 回答
0

以下是Ruby on rails在 Ubuntu 上设置的步骤:

  1. 您需要导入 RVM GPG 密钥:

gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3

  1. 然后安装 RVM

curl -sSL https://get.rvm.io | bash -s stable

  1. 加载 RVM 脚本

source ~/.rvm/scripts/rvm

以下是创建新 Rails 应用程序的步骤:

1. rails new demo 
2. cd demo
3. rake db:create
4. rails server
于 2017-06-16T12:27:10.540 回答
0

试试这个链接。解释了安装 Ruby 的所有三种方法(RVM、rbenv 和通过源代码)以及为最新版本的 ubuntu 分别设置 rails,包括 DB 设置(MySQL 和 Postgres)。

https://gorails.com/setup/ubuntu/17.04

于 2017-06-16T12:38:41.327 回答