5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Xcodeを複数使用している場合に、Xcode Plug-inを両方で使う方法

Last updated at Posted at 2014-03-13

Xcodeを共存させる方法は、下記の記事に乗っているのですが、

ダウンロードしてきた方のXcodeを起動してみると、plug-inが有効になっていません。

~/Library/Application\ Support/Developer/Sharedに、ダウンロードしてきた方のXcodeと同一の名前でディレクトリを作り、そこにPlug-insディレクトリを丸ごとコピーすると使えるようになります。

今回の場合は、AppStoreで、Xcode 5.1にアップデートし、Xcode 5.0.2をダウンロードした(名前はそのままXcode 5.0.2にしました)ので、下記のようにしました。

cd ~/Library/Application Support/Developer/Shared
mkdir Xcode\ 5.0.2  # <= ダウンロードしたXcodeにつけた名前でディレクトリを作成
cp -r Xcode/Plug-ins Xcode\ 5.0.2/

これで起動すれば使えるはずです。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?