Adroit
Adroit

Reputation: 11

Installation of tableau in ubuntu 18.04

I am trying to install Tableau in ubuntu 18.04 but getting errors

dpkg: error processing archive tableau-server-2019-2-8_amd64.deb (--install): new tableau-server-20192.20.0119.2115 package pre-installation script subprocess returned error exit status 1 Errors were encountered while processing: tableau-server-2019-2-8_amd64.deb

Upvotes: 1

Views: 4824

Answers (2)

Ronak Dhoot
Ronak Dhoot

Reputation: 2321

As per their installation document you need to install it using gdebi

sudo apt-get update
sudo apt-get upgrade
sudo apt-get -y install gdebi-core
sudo gdebi -n tableau-server-2019-2-8_amd64.deb

Upvotes: 2

Arpit Jain
Arpit Jain

Reputation: 1315

Tableau supports only

CentOS 7

Ubuntu 16.04 LTS

Red Hat Enterprise Linux (RHEL) 7

Oracle Linux 7

Also for the ref:- https://community.tableau.com/thread/273257

Upvotes: 2

Related Questions