当前位置: 首页>>技术问答>>正文


在哪里解压android studio文件?

, ,

问题描述

我是Ubuntu的新手,我刚刚安装了双启动Ubuntu 12.04。我想安装android studio,但我真的不知道怎么做。我已经下载了android-studio-bundle.tgz文件,并在其中写入以在适当的位置解压缩文件。我真的不知道我的应用程序的适当位置意味着什么。你能告诉我在哪里打开这个文件,或者这是安装android studio的正确方法吗?如果你评论我一个很好的指南或地方阅读关于ubuntu的提示我会非常感激,只是对ubuntu有一般的了解。

主要问题:我应该在哪里解压缩我的android-studio-bundle.tgz文件?

最佳解决办法

我看到问题的关键部分:用户是Ubuntu /Linux的新手,用户需要基于最佳实践和基本用户体验的推荐。

@ luis-de-sousa指出Ubuntu目录结构是正确的,但我使用了this reference from Official Sources

如果您希望android-studio可供所有用户使用(基于上述内容),您应该将tar /tgz /zip解包到/opt而不是/usr/local/usr/bin(后者是specific-user安装的首选)。正确设置,我们不需要更改用户组权限或任何其他high-level管理。

  1. 将下载的tar /tgz /zip文件解压缩到它所在的位置

  2. 使用终端窗口,导航到该文件夹​​位置(可能是cd ~/Downloads),调用sudo -i(接下来的几个步骤将需要administrator /su权限)

  3. mv android-studio /opt移动您解压缩的文件(需要权限)

  4. gedit android-studio.desktop这将打开一个文本编辑器,以便我们可以创建一个快捷方式图标来打开您的新程序。插入以下代码,然后保存.desktop文件。

    [Desktop Entry]
     Name=Android Studio
     Comment=Integerated Development Environment for Android
     Exec=/opt/android-studio/bin/studio.sh
     Icon=/opt/android-studio/bin/studio.png
     Terminal=false
     Type=Application
     Categories=Development;IDE
    
  5. 完成后,desktop-file-install android-studio.desktop

我们已完成终端窗口,您可以关闭它或exit .desktop文件现在允许您在Ubuntu的Unity界面(或您正在使用的任何DE菜单/短划线)中搜索和查找android-studio。换句话说,单击upper-left中的该图标以搜索android-studio您也可以在图标上运行right-click并将其“锁定到启动器”。

您还可以创建为应用程序启动器see the Ubuntu Documentation on Unity Launchers.显示的菜单选项


除了in-text引用外,我还广泛引用了以下几页:

http://naveensnayak.wordpress.com/2013/05/15/ubuntu-13-04-adding-launchers-to-unity-panel/

如何安装Eclipse?

http://developer.android.com/sdk/installing/studio.html#Installing

次佳解决办法

在Linux中,程序通常存储在/usr/local/usr/share中;当您使用apt安装程序时,它会自动设置在其中一个文件夹中。我建议你创建一个像/usr/local/android-studio这样的文件夹并在那里解压缩文件(请注意,你需要sudo权限才能这样做)。

否则,您可以将其解压缩到home文件夹中的某个位置,如果您没有sudo权限,也可以选择。这里并不重要,为方便起见,您可以创建一个像~/software/android-studio这样的文件夹。

了解有关Linux directory structure的更多信息。

第三种解决办法

好吧,让我说清楚,有一个适当的地方放置东西,但在这种情况下,简单是最好的,所以我更喜欢你已经拥有写/读权限的任何位置,如你$HOME目录。

取自the instructions

Linux:

  1. Unpack the downloaded Tar file, android-studio-bundle-.tgz, into an appropriate location for your applications.
  2. To launch Android Studio, navigate to the android-studio/bin/ directory in a terminal and execute studio.sh.
  3. You may want to add android-studio/bin/ to your PATH environmental variable so that you can start Android Studio from any directory.

以简单的步骤恢复:

mkdir ~/android-sdk && cd ~/android-sdk
wget http://dl.google.com/android/studio/install/0.4.2/android-studio-bundle-133.970939-linux.tgz
tar xf android-studio-bundle-133.970939-linux.tgz
export PATH="~/android-sdk/android-studio/bin/:$PATH"
studio.sh

如果你想让它们永久化:

echo 'export PATH="~/android-sdk/android-studio/bin/:$PATH"' >> ~/.bashrc

.zshrc。取决于您使用的shell。完成。您可以使用您喜欢的任何路径,只是尝试不干扰其他软件。

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/2356.html,未经允许,请勿转载。