Reputation: 11
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
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
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
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
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