Xcode 更改默认版本 xcode-select

我们的Xcode使用版本可以根据Xcode > Preferences > Locations路径查看到正在使用的版本和该版本路径。

Xcode 更改默认版本 xcode-select_第1张图片

我们本文介绍的是在终端使用xcode-select命令 根据需求修改使用的Xcode版本。

在终端xcode-select可使用的命令如下:
1. xcode-select [-h, –help]
2. xcode-select [-p, –print-path]
3. xcode-select [-s , –switch ]
4. xcode-select [-v, –version]
5. xcode-select [-r, –reset ]

  1. 查看xcode-select可使用命令,使用如下命令

    1. xcode-select -h
      or
    2. xcode-select --help
  2. 查看当前正在使用的Xcode版本路径,使用如下命令

    1. xcode-select -p
      or
    2. xcode-select --print-path
  3. 查看xcode-select版本

    1. xcode-select -v
      or
    2. xcode-select --version
  4. 重置为默认的command line tools path

    1. xcode-select -r
      or
    2. xcode-select -reset

    1. 修改Xcode使用版本

    1. sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
      or
    2. sudo xcode-select -s /Applications/Xcode.app/Contents/Developer

本文转载 http://blog.sina.com.cn/s/blog_605409770102uwxc.html

你可能感兴趣的:(环境配置)