我已经从develop.android.com
下载了android-studioandroid-studio-ide-202.7351085-linux.tar.gz
文件,并将该文件解压缩到/opt/android-studio
文件夹中,以便将android studio软件安装在root
目录中。我不想将其安装在/home/Downloads
目录中。但我没有在我的应用栏和搜索栏上显示任何软件图标。我想知道为什么,我还想为从任何目录运行/启动 android 工作室设置路径环境变量。
正如install_linux.tar
中提到的,该指令是3
和4
。
3. [OPTIONAL] Add "{installation home}/bin" to your PATH environment variable so that you can start Android Studio from any directory.
4. [OPTIONAL] To adjust the value of the JVM heap size, create a file studio.vmoptions (or studio64.vmoptions if using a 64-bit JDK) in the configuration directory and set the -Xms and -Xmx parameters. To see how to do this, you can reference the vmoptions file under "{installation home}/bin" as a model but do not modify it, add your options to the new file.
我安装 Android-Studio 的目的是为了学习 Flutter 中的应用程序开发。
简短回答:
- 转到您的主目录。
- 键入
ls -a
- 您应该看到名为
.bashrc
的文件(也许您会看到名为.zshrc
insead 的文件 - 然后将.bashrc
替换为.zshrc
) - 类型
nano .bashrc
- 将此行添加到文件末尾:
export PATH=/path/to/your/instalation/directory/android-studio/bin:$PATH
按 Ctrl+ - s,然后按 Ctrl+x
- 使用
source ~/.bashrc
重新加载
长答案:
我遇到了同样的问题,我发现这个网站 https://linuxhint.com/add-directory-to-path-linux/,那里详细解释了所有内容。我建议阅读它。
快速提示: 对于 Kali linux,将文件(导出 PATH=/path/to/your/instalation/directory/android-studio/bin:$PATH) 添加到 .zshrc 而不是 .bashrc
我找到了更简单的方法。
在安卓工作室菜单栏上,按Tools
,然后Create Desktop Entry