当我运行./studio.sh时,由于某种原因,我得到了这个错误:
`./studio.sh
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
./studio.sh: 1: ./studio.sh: which: not found
ERROR: Cannot start Android Studio
Required tools are missing - check beginning of "./studio.sh" file for details.`发布于 2015-01-24 13:17:38
看来您没有安装which工具。
它应该包含在debianutils包中。
试着安装:
sudo apt-get install debianutils
或重新安装:
sudo apt-get install --reinstall debianutils
https://stackoverflow.com/questions/28125191
复制相似问题