I have used ubuntu-make aka umake
to install Android Studio and setup the full Android SDK. But since I have upgraded to Ubuntu 16.04 LTS (Kubuntu to be precise) I am not able to install Android stack this way. Here is my console output:
$ umake android
ERROR: A default framework for category Android was requested where there is none
usage: umake android [-h] {android-ndk} ...
Apparently, there is no android-studio or android-sdk option available. Does anyone know why? Also, same goes for eclipse under ide section.
sudo umake android android-studio
I get the errorPermissionError: [Errno 13] Permission denied: '/root/.local/share/umake/android/android-studio'
– Jason Harrison May 03 '17 at 21:04sudo chmod -R og+rx /root
to resolve the permissions error but that doesn't seem like a great solution. For one it's give executable permissions to files, not just directories. For another it should only be necessary to change the permissions along the path, not everything under /root. I'm learning ubuntu, on OSX locally install packages go under /usr/local so /root/.local seems so very very wrong, but it might just be the way to do it. – Jason Harrison May 04 '17 at 19:07sudo umake android android-studio
. I should not have used sudo. – Jason Harrison May 04 '17 at 20:04sudo umake android android-studio
and notumake android android-studio
? Whysudo
? you're installing system wide?? – Thufir Oct 25 '17 at 12:08