Ubuntu下配置Ruby on Rails环境

安装过程稍显麻烦,大家忍耐一下

Ubuntu下配置Ruby on Rails环境_第1张图片
我不

最近由于学习Ruby,需要使用ruby on rails,找了一些方法也遇到了一些问题,特此总结一下

安装RVM

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

上来就出错了,也是没谁了

Ubuntu下配置Ruby on Rails环境_第2张图片
我不活了

好在,命令行有提示:

Ubuntu下配置Ruby on Rails环境_第3张图片
rvm error

那我就试一试这句命令:

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

命令执行成功了,我以为妥妥的可以了呢,试了一下rvm -v,竟然没有此命令,哦,我理解了,那就再执行一次之前的代码好了:

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

好了,但是有个警告:

这里有警告

那咱就跟着它走,当然,如果你想知道是干什么的,仔细阅读一下警告即可

source ~/.profile

现在我们试一下rvm -v

➜  ~ rvm -v           
rvm 1.27.0 (latest) by Wayne E. Seguin , Michal Papis  [https://rvm.io/]

大功告成!

安装Ruby

  • 安装一些必须的包
rvm requirements

好在这一步没有错

  • 安装Ruby
rvm install 2.3.3
  • 安装Documentation
rvm docs generate-ri

安装rails

gem install rails

好在比较顺利

测试一下rails -vruby -v

➜  ~ rails -v             
Rails 5.0.0.1
➜  ~ ruby -v
ruby 2.3.3p222 (2016-11-21 revision 56859) [x86_64-linux]
➜  ~ 

安装MySQL

sudo apt-get install mysql-server mysql-client libmysqlclient-dev

设置好密码

➜  ~ mysql -u root -p
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
Server version: 5.7.16-0ubuntu0.16.10.1 (Ubuntu)

Copyright (c) 2000, 2016, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> exit
Bye

好了,成功!

测试一下

来,让我们测试一下,虽然我还不懂Ruby,但是咱可以写个最简单的

print("Hello, Ruby!\n")

执行命令

➜  Ruby ruby hello.rb
Hello, Ruby!

好了,既然环境好了,我可以学习Ruby去了

参考

http://www.jianshu.com/p/87c65b448a14
http://www.xitongzhijia.net/xtjc/20150319/42102.html
http://www.tuicool.com/articles/BbMJveF
http://www.open-open.com/lib/view/open1437029725084.html

你可能感兴趣的:(Ubuntu下配置Ruby on Rails环境)