Syazwan
Syazwan

Reputation: 11

Apache Superset - Unable to find superset folder in Ubuntu

I have a problem where I couldn't find superset installation folder after I installed superset from this link https://superset.incubator.apache.org/installation.html

Where is the folder?

Upvotes: 1

Views: 3360

Answers (4)

Abishek
Abishek

Reputation: 1

Using docker it will get the destination while cloning from git itself.

In Virtual environment In the file explorer type \wsl$ in the address bar and click enter. enter image description here

It display the virtual environment. home/user/venv(virtualEnvironmentName)/lib/python/site-packages/superset

Upvotes: 0

Tushar Walzade
Tushar Walzade

Reputation: 3809

In addition to the other answers, here's the path on Windows you can find superset at -

C:\Users\<username>\AppData\Local\Programs\Python\Python39\Lib\site-packages\superset

Upvotes: 0

Bernard Esterhuyse
Bernard Esterhuyse

Reputation: 406

I installed Superset in the Anaconda base environment (on Ubuntu). The install files are in:

~/anaconda3/lib/python3.7/site-packages/superset

This of course depends on the location of your Anaconda installation. So it would be:

~/anaconda_installation_location/lib/python3.7/site-packages/superset

Upvotes: 2

Abhishek Gupta
Abhishek Gupta

Reputation: 21

I installed the Apache Superset using python and the virtualenv. For me, I found the superset files in :

/usr/local/lib/python3.4/dist-packages/superset/

Also, the frontend assets were found in :

/usr/local/lib/python3.4/dist-packages/superset/static/assets/src/

I hope this helps.

Upvotes: 1

Related Questions