Installing
-
4. Installing Dependencies
Install the required 32-bit libraries by running:
sudo dnf install zlib.i686 ncurses-libs.i686 bzip2-libs.i686
Authenticate with your admin password.
If you get a “User is not in the sudoers file” error, follow this guide:
How to Enable sudo. -
5. Installing Oracle JDK
Install the required Oracle Java JDK:
-
6. Relocating Android Studio
Relocate Android Studio to /opt for a system-wide installation:
sudo chown -R root:root /tmp/android-studio
sudo mv /tmp/android-studio /opt/
-
7. Adding Android Studio to User PATH
Add Android Studio to your command-line PATH:
echo "export PATH=/opt/android-studio/bin:$PATH" >> ~/.bashrc
Then reload the configuration:
bash
Contents