install Tizen studio 3.7 on Ubuntu 19.10 or 20.04?

Viewed 3278

I am stuck on this warning while installing Tizen studio via package manager as it requires a preriquisite:

sudo apt-get install libwebkitgtk-1.0-0

running this command finds nothing. Following askubuntu forum I downloaded bunch of webkitgtk packages from here. Finally I got this error that demonstrates it requires more dependencies.

sudo dpkg -i '/home/rif/Downloads/w/libwebkitgtk-1.0-0_2.4.11-0ubuntu0.1_amd64.deb' 

error:

Selecting previously unselected package libwebkitgtk-1.0-0:amd64.
(Reading database ... 156927 files and directories currently installed.)
Preparing to unpack .../libwebkitgtk-1.0-0_2.4.11-0ubuntu0.1_amd64.deb ...
Unpacking libwebkitgtk-1.0-0:amd64 (2.4.11-0ubuntu0.1) ...
dpkg: dependency problems prevent configuration of libwebkitgtk-1.0-0:amd64:
 libwebkitgtk-1.0-0:amd64 depends on libjavascriptcoregtk-1.0-0 (= 2.4.11-0ubuntu0.1); however:
  Package libjavascriptcoregtk-1.0-0 is not installed.
 libwebkitgtk-1.0-0:amd64 depends on libegl1-mesa (>= 7.8.1) | libegl1-x11; however:

        ...and more stuff not installed, message...

Package libwebkitgtk-1.0-common is not installed.

dpkg: error processing package libwebkitgtk-1.0-0:amd64 (--install):
 dependency problems - leaving unconfigured
Processing triggers for libc-bin (2.31-0ubuntu9) ...
Errors were encountered while processing:
 libwebkitgtk-1.0-0:amd64

I have no idea what I should do to install this on Linux. How can I install it Tizen studio on Linux 20.04?

2 Answers

The easiest way to install libwebkitgtk-1.0-0 on Ubuntu 19/20 for now is listed below

  1. echo -e "# For Tizen studio\ndeb http://cz.archive.ubuntu.com/ubuntu bionic main universe" | sudo tee /etc/apt/sources.list.d/tizen-bionic-libwebkitgtk.list
  2. sudo apt update
  3. sudo apt-get install libwebkitgtk-1.0-0

And once the libwebkitgtk-1.0-0 is installed the user might face difficulty in installing libpng12 as well when trying to install any emulators.

Steps to install libpng12 are below

  1. sudo add-apt-repository ppa:linuxuprising/libpng12
  2. sudo apt-get update
  3. sudo apt-get install libpng12-0

After installing the libpng12 & libwebkitgtk-1.0-0 packages, user will be able to install any profile in Ubuntu 19 or Ubuntu 20.

Tizen Studio does not officially support Ubuntu 19 & Ubuntu 20 as of now. Official support for Ubuntu 20 LTS is expected soon

Related