Created
November 16, 2018 00:09
-
-
Save juanhuttemann/8716ea3bacca2e18ca399e9103f12e9e to your computer and use it in GitHub Desktop.
rails 5.2.1 installer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get install git-core curl zlib1g-dev build-essential libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev software-properties-common libffi-dev -y | |
| cd | |
| wget http://ftp.ruby-lang.org/pub/ruby/2.5/ruby-2.5.3.tar.gz | |
| tar -xzvf ruby-2.5.3.tar.gz | |
| cd ruby-2.5.3/ | |
| ./configure | |
| make | |
| sudo make install | |
| ruby -v | |
| gem install bundler | |
| curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
| sudo apt-get install -y nodejs | |
| gem install rails -v 5.2.1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment