0

我下载了适用于 mac 的 Android Studio 包并进行了全新安装。安装时,它下载了工具和存储库以及 Lollipop 21 x86 映像。我面临两个问题:

  1. Android SDK 管理器未在 Android Studio 中打开。该按钮什么也不做,也没有窗口出现。我不知道该怎么做。Android Studio 在安装时下载了工具和所有内容,仅此而已,我现在无法下载其他任何内容。当我从终端运行 android sdk 时。它给出了这个错误:

Dhruvs-Mac-mini:工具 dhruvsuri$ ./android

./android:第 30 行:目录名:找不到命令

./android:第 33 行:基本名称:找不到命令

./android:第 40 行:目录名:找不到命令

./android:第 44 行:目录名:找不到命令

./android:第 48 行:基本名称:找不到命令

: 找不到 sdkmanager.jar

当我检查系统偏好设置中的用户和组部分时,它显示我是管理员。

  1. 图像模拟器不运行。它给出了一个像这样的奇怪错误:

/Users/dhruvsuri/Library/Android/sdk/tools/emulator -netdelay none -n​​etspeed full -avd Nexus_5_API_21_x86

sh:文件:找不到命令

sh:grep:找不到命令

恐慌:“x86”CPUS 缺少模拟器引擎程序。

请帮我解决一下这个。谢谢你。

4

1 回答 1

1

I had the same problem. I reset my the PATH variable in the .bash_profile file. I did this by adding the two lines (using emacs, vi, etc).

PATH="/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:$PATH" export PATH

Also run this to reload .bash_profile source ~/.bash_profile

This fixed the problem for me.

于 2015-08-01T16:02:03.907 回答