从 Mac 迁移到 Ubuntu 进行 Rails 开发,会产生什么影响?
如果我从 Mac 迁移到 Ubuntu 环境,有什么问题或需要注意的事项吗?
有什么重大配置问题吗?或者一旦我弄清楚如何安装东西,事情应该几乎一样吗? (无论如何,Ubuntu 上的安装似乎更容易)。
Are there any gotchas or things to watch out for if I move from a Mac to a Ubuntu environment?
Any major configuration issues? Or should things work pretty much the same once I figure out how to install things? (seems installation is easier on Ubuntu anyhow).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
大多数设置 Rails 的问题都适用于 Mac :-)
坚持使用 Ubuntu 并确保使用 RVM 来设置 Ruby 环境。不要使用 sudo apt-get 安装 Rails,并且在安装 RVM 后,在安装 gems 时避免完全使用 sudo(例如 gem install Rails) )。
唯一的抱怨是 gedit 不像 Textmate 那样灵活,但请查看 gmate 插件。
Most of the gotchas for setting up Rails are for Mac :-)
Stick to Ubuntu and make sure to use RVM to set up your Ruby environment. Do not use
sudo apt-get
to install rails, and after RVM is installed avoid usingsudo
altogether when installing gems (eg.gem install rails
).Only complaint is that gedit is not as slick as Textmate, but check out the gmate plugin.
恕我直言,切换 ubuntu 的最大好处是您不必处理 osx 特定的设置开发服务器环境的麻烦。
我对 ubuntu 非常满意,gmate 的一个可能的替代品可能是 sublime text 2。
可以配置vim模式、emacs模式等。
The biggest gain of switching ubuntu, imho, is you don't have to deal with osx specific headaches of setting up dev-server environment.
I am pretty happy with ubuntu, a possible alternative to gmate might be sublime text 2.
It can be configured with vim mode, emacs mode, etc.