ラベル フロント の投稿を表示しています。 すべての投稿を表示
ラベル フロント の投稿を表示しています。 すべての投稿を表示

2015年11月23日月曜日

rbenvでRubyの最新版をインストールする方法

以下のコマンドを使えば、最新版をインストールできます。
rbenv install $(rbenv install -l | grep -v - | tail -1)

インストールが終わったら、rbenvを再読み込み
rbenv rehash

Rubyのバージョンを変更
rbenv global x.x.x

最後、Rubyのバージョンを確認
ruby -v

2015年10月15日木曜日

xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance の解決方法

今日「npm i」コマンドを実行したら、
こんなエラーが、、
xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
完全版のXCodeをインストールが必要だそうです。
解決方法としては、
1、まず、「https://developer.apple.com/xcode/」からXcodeをダウンロード、インストールします。

2、以下のコマンドを実行
sudo xcode-select -s /Applications/Xcode.app/Contents/Developer

もう一回実行したら、まだ新たなエラーがでました。
Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.

ApplicationsからXcodeを開いて、「同意」を押さなければなります。これでやっと問題解決。


2015年9月29日火曜日

Warning: fontconfig-2.11.1 already installed, it's just not linked

brew install fontconfig
を実行したら、こんなエラーが、
Warning: fontconfig-2.11.1 already installed, it's just not linkeds
すでにインストール済みだそうなので、リンクをはってあげればいい
 sudo brew link fontconfig

2015年9月26日土曜日

tar.unpack untar error の解決方法

方法一:「npm cache clean」を実行 ついでに「bower cache clean」も実行

方法二:「sudo」で実行