pybulletをインストールする機会があり、その際のエラーの対処法をメモしておく。
#環境
- macOS Big Sur バージョン11.6
- Python 3.8
#やったこと
###pipでインストール
pip install pybullet
するとエラーと同時にこんな表記が
You have not agreed to the Xcode license agreements, please run 'sudo xcodebuild -license' from within a Terminal window to review and agree to the Xcode license agreements.
どうやらターミナルから規約に同意してくださいということらしい。
###Xcode licenseに同意する
User$ sudo xcodebuild -license
すると
You have not agreed to the Xcode license agreements. You must agree to both license agreements below in order to use Xcode.
Press the 'return' key to view the license agreements at '/Applications/Xcode.app/Contents/Resources/English.lproj/License.rtf'
エンターキーを押すと規約が表示されるのでスペースキーで最後まで移動。最後に同意を求められるのでagreeと入力する。
もう一度 pip install pybullet
でインストール完了。