2017-02-06 5 views
1

pip installでTensorFlowをインストールすると、いくつかのメッセージが生成され、Broken toolchainというエラーで終了します。ここで転写産物の一部です:pip installコマンドで壊れたツールチェーンエラーが発生する

...<lots of warnings and errors> 

You have not agreed to the Xcode license agreements, please run 
'xcodebuild -license' (for user-level acceptance) or 
'sudo xcodebuild -license' (for system-wide acceptance) from within a 
Terminal window to review and agree to the Xcode license agreements. 

...<more stack trace output> 

    File "numpy/core/setup.py", line 653, in get_mathlib_info 

    raise RuntimeError("Broken toolchain: cannot link a simple C program") 

RuntimeError: Broken toolchain: cannot link a simple C program 

答えて

1

エラーは、 Xcodeビルドツールがシステムにインストールされていることを示している いますが、まだライセンス契約を受け入れていません。この問題を解決するには、次のいずれかの操作を行います。

  1. オープンXcodeと は、ライセンス契約に同意します。
  2. 次のコマンドを起動します。

    xcodebuild -license 
    

    は、より多くの詳細については xcodebuild documentationを参照してください。

関連する問題