如何将"{installation home}/bin"添加到您的 PATH 环境变量,以便您可以从任何目录启动 Android Studio



我已经从develop.android.com下载了android-studioandroid-studio-ide-202.7351085-linux.tar.gz文件,并将该文件解压缩到/opt/android-studio文件夹中,以便将android studio软件安装在root目录中。我不想将其安装在/home/Downloads目录中。但我没有在我的应用栏和搜索栏上显示任何软件图标。我想知道为什么,我还想为从任何目录运行/启动 android 工作室设置路径环境变量。

正如install_linux.tar中提到的,该指令是34

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 中的应用程序开发。

简短回答:

  1. 转到您的主目录。
  2. 键入ls -a
  3. 您应该看到名为.bashrc的文件(也许您会看到名为.zshrcinsead 的文件 - 然后将.bashrc替换为.zshrc)
  4. 类型nano .bashrc
  5. 将此行添加到文件末尾:export PATH=/path/to/your/instalation/directory/android-studio/bin:$PATH
  6. 按 Ctrl+
  7. s,然后按 Ctrl+x
  8. 使用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

相关内容

  • 没有找到相关文章

最新更新