ruby
rbenv
command
brew install ruby-build
brew install rbenv
rbenv install 1.9.3-p484
rbenv install 2.0.0-p353
gem install capistrano --version "<3.0.0"
Java
Java installe Oracle 1.7. Mavericks semble définir le chemin automatiquement si vous l'installez. Après l'installation, ajoutez l'exportation de JAVA_HOME vers .bashrc et c'est OK.
http://www.oracle.com/technetwork/jp/java/javase/downloads/index.html
Insérez GVM pour utiliser Gradle. Groovy est également utile pour les petits scripts, vous pouvez donc gérer la version.
command
curl -s get.gvmtool.net | bash
gvm install groovy
gvm install gradle
Scala
Installez scala et sbt avec brew.
command
brew install scala
brew install sbt
Python
command
brew install python
Play Framework
Mettez-le dans lib dans votre dossier personnel et créez un lien symbolique avec bin / play.
command
mkdir ~/lib
cd lib
brew install wget
wget http://downloads.typesafe.com/play/2.2.1/play-2.2.1.zip
unzip play-2.2.1.zip
vim
Ajoutez neobundle pour faciliter la gestion des plug-ins. À propos, seul vimproc qui peut être traité de manière asynchrone est inclus.
command
mkdir -p ~/.vim/bundle
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
git clone https://github.com/Shougo/vimproc ~/.vim/bundle/vimproc
eclipse
--Insérer vrapper
PHP
Mettez le compositeur comme officiel.
command
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
MySQL, MongoDB, memcached, Nginx
Ne le mettez pas dans un emballage, mettez-le en infusion
command
brew install mysql
brew install MongoDB
brew install memcached
brew install nginx
Recommended Posts