web-dev-qa-db-ja.com

umakeとスナップでAndroid studioをインストールする方法は? ubuntu-make.umakeの使用法

どうすれば install umakeからAndroid-studioにスナップできますか? umakeの使用方法の問題のようですが、コマンドは 正しい に見えます。

thufir@dur:~$ 
thufir@dur:~$ snap install ubuntu-make
error: This revision of snap "ubuntu-make" was published using classic confinement and thus
       may perform arbitrary system changes outside of the security sandbox that snaps are
       usually confined to, which may put your system at risk.

       If you understand and want to proceed repeat the command including --classic.
thufir@dur:~$ 
thufir@dur:~$ 
thufir@dur:~$ snap install ubuntu-make --classic
ubuntu-make master from 'didrocks' installed
thufir@dur:~$ 
thufir@dur:~$ ubuntu-make.umake Android
Segmentation fault (core dumped)
thufir@dur:~$ 

これは 推奨 メソッドのようです。

1
Thufir

https://github.com/ubuntu/ubuntu-make

Ubuntu Makeスナップを使用して、古いサポート対象リリースであっても、常に最新かつ最高のバージョンを使用できるようにします。

  • インストール:
    snap install ubuntu-make --classic
    

    Umakeはubuntu-make.umakeとして実行できます

    • Ubuntu Makeを実行します:
      snap run ubuntu-make.umake Android
      
  • 1
    JVS

    を使用してインストールした場合、これはもはや必要ないと思います

    snap install ubuntu-make --classic
    

    次に、システムを再起動して、スナップがパスに収まるようにする必要があります。その後、単純に実行できます。

    umake Android
    
    0
    Goddard