Skip to content

Instantly share code, notes, and snippets.

@uneeq
Forked from galulex/install.md
Created November 9, 2016 09:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uneeq/b797b15f48fae76ad96b11d566c5e3ea to your computer and use it in GitHub Desktop.
Save uneeq/b797b15f48fae76ad96b11d566c5e3ea to your computer and use it in GitHub Desktop.
Ruby On Rails Ubuntu 16.04 install

Developer libs

mysql, rmagic, curl, git, vim, sqlite, nodejs nokogiri...

sudo apt-get install libxslt1-dev libxml2-dev libmagickwand-dev imagemagick libsqlite3-dev libcurl4-openssl-dev curl git git-gui vim-gtk exuberant-ctags nodejs nodejs-legacy rar

Ruby

sudo apt-add-repository ppa:brightbox/ruby-ng
sudo apt-get update
sudo apt-get install ruby2.3 ruby2.3-dev

click

Rails

sudo gem install rails --no-rdoc --no-ri

PostgreSQL

sudo apt-get install postgresql libpq-dev
sudo -u postgres psql
alter user postgres with password 'password';
\q

GUI

sudo apt-get install pgadmin3

MySQL

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

GUI

sudo apt-get install mysql-workbench

MongoDB

sudo apt-get install mongodb

Redis

sudo apt-get install redis-server

Sphinx

sudo apt-get install sphinxsearch

Elasticsearch

sudo apt-get install elasticsearch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment