用mac 自带的终端执行的命令,安装安装Vapor和toolbox

安装指令:

  1. macdeMacBook-Pro:~ mac$ curl -sL check.vapor.sh| bash

结果报这个错误:

  1. xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
  2. ⚠️ We don't recognize your Command Line Tools version.
  3.  
  4. Open Xcode and make sure the correct SDK is selected:
  5. Xcode - xcode-select: error: tool 'xcodebuild' requires Xcode报错解决方案的更多相关文章

      1. xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
      1. 运行xcode命令报错: sh-3.2# xcodebuild xcode-select: error: tool 'xcodebuild' requires Xcode, but active de ...

      1. ios 自动化构建 code-select: error: tool 'xcodebuild' requires Xcode, but active developer directory.....
      1. 问题描述: Pod installation complete! There are 2 dependencies from the Podfile and 3 total pods installe ...

      1. stderr: xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
      1. 错误提示: (1). stderr: xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer direc ...

      1. Mac Angular打包报错xcode-select: error: tool 'xcodebuild' requires Xcode
      1. Mac Angular打包报错: Error: xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer ...

      1. Mac下idea启动H5报错:xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Deve
      1. 1. 执行“ xcodebuild -showsdks ”,报错如下“xcode-select: error: tool 'xcodebuild' requires Xcode, but active ...

      1. xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Deve
      1. 以上错误是因为安装了 xcode , 但并不是系统默认的位置, 所以可以使用以下命令把 xcode 的路径修改为你安装的位置即可 sudo xcode-select --switch /Applica ...

      1. iOS自动化构建 xcode-select: error: tool 'xcodebuild' requires Xcode, but active developer directory '/Library/D...
      1. 报这个错误的原因是xcode-select不在默认的路径 1.找到xcode-select的当前路径终端命令行 xcode-select --print-path /Library/Developer ...

      1. tool 'xcodebuild' requires Xcode, but active developer directory '/Library/Developer/CommandLineTools' is a command line tools instance
      1. 在执行自动化打包的时候报错,检查发现是Xcode的路径被改了 标记3的地方原来默认是没有内容的,点击它,然后会自动弹出一个选项,就是xcode的版本. 修改后,在命令行输入xcodebuild命令测试 ...

      1. Xcode基本设置系列和Xcode报错解决方案
      1. 1, arc机制中调用非arc文件. Xcode——>Project->Build Phases,将需要非arc文件更改为:"-fno-objc-arc"   ,该参数 ...

    1.  
    2. 随机推荐

        1. Android开发学习笔记-自定义TextView属性模版
        1. 如果项目中有很多个控件使用的是同一种样式,则为了方便,可以将样式设置到系统中去,这样使用的时候会方便很多. 下面是自定义样式模版的方法. 1.style.xml文件中添加自己要设置的样式内容 < ...

        1. symfony 事务提交
        1. 1. 添加数据 新建一个对象,给对象赋值 $em = $this->getDoctrine()->getManager(); //添加事物 $em->getConnection()- ...

        1. 让树莓派自动上报IP地址到邮箱,二代B
        1. 由于我使用树莓派的场景大多数是在没有显示器.只用terminal连接它的情况下,所以,它的IP地址有时会在重启之后变掉(DHCP的),导致我无法通过terminal连接上它.然后我又要很麻烦地登录路由 ...

        1. gem install cocoapods ERROR: While executing gem ... (Gem::FilePermissionError)
        1. cocoapods 执行 sudo gem install cocoapods 的时候出现  While executing gem ... (Gem::FilePermissionError)   ...

        1. mysql 查询锁表
        1. 1)使用情景“判断通过后写入数据库”,这个一般是不会有问题的, 但并发访问的时候就不太好搞.因为写入(insert)是需要时间的,假设现在有两个并发请求,(假设第一个访问是最后一个符合条件的写入请求, ...

        1. SharePoint如何模拟用户
        1. try { SPSecurity.RunWithElevatedPrivileges(delegate() //用此方法模拟管理员账户运行此事件处理程序 { SPWeb web = SPContext ...

        1. PHP 使用 MongoDB
        1. PHP 想要往 MongoDB 里增删查改数据,需要先安装 mongodb mongo 扩展模块,一般两个都装上: cd /usr/local/src/ wget https://pecl.php ...

        1. Hadoop核心架构HDFS+MapReduce+Hbase+Hive内部机理详解
        1. 转自:http://blog.csdn.net/iamdll/article/details/20998035 分类: 分布式 2014-03-11 10:31 156人阅读 评论(0) 收藏 举报 ...

        1. 使用es6使数组的第一项和最后一项就行调换
        1. let arr = [1, 2, 3,4]; let a = arr.filter((item, index) => { return index > 0 && index ...

        1. linux下添加,删除,修改,查看用户和用户组
        1. 标签:gpasswd, groupadd, groupdel, groupmod, linux, useradd, userdel, usermod, who 一,组操作 1,创建组 groupadd ...