Reputation: 2633
i'm trying to Update My android studio for the latest version stable that recently released 2.2 Stable from my Current version 2.1.3 at Ubuntu this shows above android studio
after this finished it just close the android studio and when open it again no change it still version 2.1.3
it happen twice ? how to solve this as this is the first time update from Ubuntu ?
Upvotes: 2
Views: 2429
Reputation: 19351
I had similar problem with update my Android Studio.
Download archive from: https://dl.google.com/dl/android/studio/ide-zips/2.2.0.12/android-studio-ide-145.3276617-linux.zip and unpack.
Delete the previous one and paste the new one. If you're have it on opt
directory you would need to use sudo
privileges to delete it.
Open Android Studio using ./bin/studio.sh
Hope this helps.
Upvotes: 1
Reputation: 485
If you are starting Android studio using terminal use the following method
:-) Try this, it will work
Upvotes: 0
Reputation: 300
I sorted it out by changing the folder permission of
/android-studio
Upvotes: 0
Reputation: 73
I just had this problem. I fixed it by granting write/read permissions from the android studio directory to my user, writing this on my terminal:
sudo chown -R $USER:$USER /opt/android-studio
After that I launched android studio from desktop entry (I don't think this really matters) and update worked fine.
Upvotes: 6
Reputation: 2633
thanks for participating i found the answer in this link
Unable to update Android studio from 2.0 to 2.1
by give the android studio the permission to edit Thanks Ram
Upvotes: 0