2
2

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 3 years have passed since last update.

pip経由でidbインストール後にidbコマンドが見当たらない

Posted at

問題

FlipperでiOS実機ビルドのデバッグにidbが必要そうだったのでセットアップドキュメントに書いてある通り進めたが、pip経由でのidbのインストール後にidbコマンドが見当たらない問題が発生。

$ idb
zsh: command not found: idb

環境

macOS Big Sur 11.1

解決方法

https://github.com/facebook/idb/issues/604
ここを参考にした。
一度 pip install fb-idb でpermission deniedで再度 sudo pip install fb-idb でインストールしたが、この場合上記の問題が発生する模様。
コメントに書いてある通り、一度fb-idbをアンインストール後再度インストールで /usr/local/bin に入った。

$ pip3.9 uninstall fb-idb
$ sudo pip3.9 install fb-idb
$ which idb
/usr/local/bin/idb
2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?