I have Windows 8 OS running on my machine and i also have Linux Ubuntu Virtual machine. I want to install ruby and work with it and I heard that windows doesn't support all ruby gems and Linux will be better for ruby. so do you think I should install ruby on windows or on my Virtual machine? which will be better? And help me with installing ruby on it. Also I want to know if there is any IDE as in eclipse for java better than a command prompt?
how to start with ruby and install it? Which is better windows or VM?
195 Views Asked by Cocoa At
2
There are 2 best solutions below
0
Borodin
On
You may have some problems with gems on Windows, but in general those will be the gems that support Linux-only functionality. The same applies to a Linux installation: you may have problems with some gems there too, in particular with those that support Windows-only functionality.
Unlike Perl, where Windows compatability was bolted on after the language had established itself on Linux, Ruby is genuinely a cross-platform language, and there is no best choice of platform. Your only consideration should be, "what platform do I want to develop for?"
Related Questions in RUBY
- Best way to make an HABTM association via console
- undefined method `namespace' for main:Object (NoMethodError) - active record / rakefile
- Ruby destroy is not working? Or objects still present?
- Trying to set the value of an input with mechanize
- How to split the logic in a ruby game
- How can I monitor an endpoint's status with Ruby?
- Why can a private class method be explicitly invoked in Ruby?
- Rails - Ajax do not work properly on production server
- syntax error, unexpected kEND
- Carrierwave file upload with different file types
- b.javascript_dialog().exists? is not working for me in WATIR 4.0.2
- Combine two arrays of hashes
- Building a simple calculator form in Rails 4
- How do I update create route from rails 3 to 4
- Comparison of Fixnum with nil failed - palindrome program Ruby
Related Questions in UBUNTU
- Git init --bare giving error fatal: Out of memory? mmap failed: No such device
- EMACS-Live + Slime error at startup
- Vagrant - Ansible error installing Apache
- Openfire Smack Connection issue
- Error in Ruby on Rails on Ubuntu 14.04
- Django webapp (on an Apache2 server) hangs indefintely when importing nltk in views.py
- C++ string and char* manipulation acting weird
- Data transfer between Ubuntu/Windows to network
- How to upgrade Node js version to 0.12.4 on Ubuntu
- How do I install Intellij on Ubuntu 15.04?
- Can't run django-admin startproject mysite (ubuntu, django.core.exceptions.ImproperlyConfigured)
- How to add apt key with --recv-keys instead of --recv?
- Express - Multiparty/Formidable unable to parse files greater than 100kb on Ubuntu. Callback of Parse is not called at all
- Unable start mongoose im in ubuntu. process crashes
- Tkinter application topmost, even over fullscreen
Related Questions in VIRTUAL-MACHINE
- No laravel sync folders in homestead vagrant on windows
- Only 32 bit available in Oracle VM - Hadoop Installation
- Setting Email Notification for Virtual machine whic are down or services that are stopped in Azure Cloud
- Some weird error using Kivy 1.9.1
- How to enable Microsoft Access Driver (*.mdb, *.accdb) in Microsoft Azure windows server 2012 R2?
- scp between two virtual machines in virtualbox
- how to set network configuration for vm in esx host through command?
- List all VM's by their port mirroring settings PowerShell
- Downloading files from Google Cloud Bucket onto Google Compuete Engine Instance Startup (.NET)
- SonarQube not running on CentOS
- Vagrant Port Fowarding on Windows
- Docker inside Windows guest virtual machine
- SSH asking for password in Bluemix
- Running (& compiling) untrusted user code
- ANDY Error Unable to Launch VM Process
Related Questions in RUBY-INSTALL
- RIDK install: error: database 'mingw32' is not valid (invalid or corrupted database (PGP signature))
- Ruby-Install ruby 2.7.x fails on m1 mac pro
- I'm getting an Error running rvm make while installing Ruby
- how to start with ruby and install it? Which is better windows or VM?
- Not able Install ruby 2.2.4 in mac os 10.15.6 catalina-openssl, ruby, zlib failing error
- Why isn't chruby saving my default Ruby?
- Trying to make ruby-install on ubuntu 16.04
- In Rails, how do you have multiple versions of puma-dev running on different versions of Ruby via ruby-install?
- ruby-install fails when installing ruby 2.6.x and 3.0.x on mac osx 11.6
- How to uninstall ruby installed by ruby-install
- ruby-install to install latest ruby?
- Can't find ruby or gem commands after doing ruby-install in Ubuntu
- cannot install ruby using rvm as an unprivileged user with no sudo privileges
- Error installing Ruby 3.1.2 on macOS 12.5
- How to install a preview release of Ruby with ruby-install
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You may have some problems with gems on windows. Although they are mostly solveable, you'd better install x86 ruby interpreter.
IDE is a hard question. I heard you mentioned eclipse. It is not only for java!:) If you are interested you may keep using eclipse. How? Read this article. It's about DLTK (Dynamic Languages Toolkit). But my choice is Aptana Studio. It is eclipse based IDE. Why Aptana? It is free and provides eclipse-like user interface. If you want to use debugger (I know you do) you should install debug-base and debug-ide gems.
There are also some proprietary IDEs like RubyMine (i really like it btw) or VS "plugin" Ruby in Steel
Good luck!