emtiajpuloq Asked: 2020-06-20 07:22:45 +0800 CST2020-06-20 07:22:45 +0800 CST 2020-06-20 07:22:45 +0800 CST How do I install Genymotion on Ubuntu 20.04? 772 How do I install Genymotion on Ubuntu 20.04? emulation genymotion 1 Answers Voted N0rbert 2020-06-20T07:52:47+08:002020-06-20T07:52:47+08:00 According to PKGBUILD from ArchLinux AUR - you have to install VirtualBox sudo apt-get install virtualbox then download the GenyMotion and install it with cd ~/Downloads wget https://dl.genymotion.com/releases/genymotion-3.1.0/genymotion-3.1.0-linux_x64.bin yes | sudo bash ./genymotion-3.1.0-linux_x64.bin -d /usr/local/ then optionally create symlinks for binaries with: sudo ln -s /usr/local/genymotion/genymotion /usr/local/bin/genymotion sudo ln -s /usr/local/genymotion/genymotion-shell /usr/local/bin/genymotion-shell sudo ln -s /usr/local/genymotion/player /usr/local/bin/genymotion-player sudo ln -s /usr/local/genymotion/gmtool /usr/local/bin/gmtool It seems that you need to obtain license to get it working. Possible free alternative may be Anbox (installed from Snap with snap install anbox).
According to PKGBUILD from ArchLinux AUR - you have to
install VirtualBox
then download the GenyMotion and install it with
then optionally create symlinks for binaries with:
It seems that you need to obtain license to get it working.
Possible free alternative may be Anbox (installed from Snap with
snap install anbox
).