1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Merge pull request #38662 from olivierlacan/doc/update-windows-setup

Stop recommending RailsInstaller in favor of RubyInstaller
This commit is contained in:
Rafael França 2020-03-09 13:57:07 -04:00 committed by GitHub
commit fc764f0639
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -100,21 +100,18 @@ ruby 2.5.0
Rails requires Ruby version 2.5.0 or later. If the version number returned is Rails requires Ruby version 2.5.0 or later. If the version number returned is
less than that number (such as 2.3.7, or 1.8.7), you'll need to install a fresh copy of Ruby. less than that number (such as 2.3.7, or 1.8.7), you'll need to install a fresh copy of Ruby.
TIP: To quickly install Ruby and Ruby on Rails on your system in Windows, you can use To install Rails on Windows, you'll first need to install [Ruby Installer](https://rubyinstaller.org/).
[Rails Installer](http://railsinstaller.org). For more installation methods for most
Operating Systems take a look at [ruby-lang.org](https://www.ruby-lang.org/en/documentation/installation/).
If you are working on Windows, you should also install the For more installation methods for most Operating Systems take a look at
[Ruby Installer Development Kit](https://rubyinstaller.org/downloads/). [ruby-lang.org](https://www.ruby-lang.org/en/documentation/installation/).
#### Installing SQLite3 #### Installing SQLite3
You will also need an installation of the SQLite3 database. You will also need an installation of the SQLite3 database.
Many popular UNIX-like OSes ship with an acceptable version of SQLite3. Many popular UNIX-like OSes ship with an acceptable version of SQLite3.
On Windows, if you installed Rails through Rails Installer, you Others can find installation instructions at the [SQLite3 website](https://www.sqlite.org).
already have SQLite installed. Others can find installation instructions
at the [SQLite3 website](https://www.sqlite.org). Verify that it is correctly installed and in your load `PATH`:
Verify that it is correctly installed and in your PATH:
```bash ```bash
$ sqlite3 --version $ sqlite3 --version