Jun's Blog

Output, activities, memo and etc.

Entries from 2014-08-23 to 1 day

Set up Ruby development environment

rbenv Ruby をバージョンごとに管理するツールです。https://github.com/sstephenson/rbenv $ brew install rbenv ruby-build ruby-buildが依存しているopensslのinstallに失敗したため。 ダウンロードサイトがメンテナンス中だったのかもしれません。 個別…

Set up Node.js development environment

nvm Node.js をバージョンごとに管理するツールです。 $ curl https://raw.githubusercontent.com/creationix/nvm/v0.13.1/install.sh | bash 自動的に挿入されます。 $ cat ~/.bash_profile ... export NVM_DIR="$HOME/.nvm" [ -s "$NVM_DIR/nvm.sh" ] && .…

Set up Perl development environment

In this article, I used perlbrew (perl version management tool). Perlbrew $ curl -kL http://install.perlbrew.pl | bash Add these lines to .bash_profile $ vi ~/.bash_profile # Perlbrew if [ -f ~/perl5/perlbrew/etc/bashrc ]; then . ~/perl5/p…